17 Zeilen
395 B
JavaScript
17 Zeilen
395 B
JavaScript
import DateInput from "discourse/components/date-input";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default DateInput.extend({
|
|
useNativePicker: false,
|
|
layoutName: "wizard/templates/components/wizard-date-input",
|
|
|
|
@discourseComputed()
|
|
placeholder() {
|
|
return this.format;
|
|
},
|
|
_opts() {
|
|
return {
|
|
format: this.format || "LL",
|
|
};
|
|
},
|
|
});
|