Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
15 Zeilen
Kein EOL
347 B
JavaScript
15 Zeilen
Kein EOL
347 B
JavaScript
import Component from "@ember/component";
|
|
import { observes } from 'discourse-common/utils/decorators';
|
|
|
|
export default Component.extend({
|
|
@observes('dateTime')
|
|
setValue() {
|
|
this.set('field.value', this.dateTime.format(this.field.format));
|
|
},
|
|
|
|
actions: {
|
|
onChange(value) {
|
|
this.set('dateTime', moment(value));
|
|
}
|
|
}
|
|
}); |