cf50a7deb3
* Apply prettier * applied prettier for similar-topics-validator Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
15 Zeilen
336 B
JavaScript
15 Zeilen
336 B
JavaScript
import Component from "@ember/component";
|
|
import { observes } from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
@observes("date")
|
|
setValue() {
|
|
this.set("field.value", this.date.format(this.field.format));
|
|
},
|
|
|
|
actions: {
|
|
onChange(value) {
|
|
this.set("date", moment(value));
|
|
},
|
|
},
|
|
});
|