Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
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",
|
|
};
|
|
},
|
|
});
|