mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 09:23:43 +08:00
DEV: Fix a computed-property.override
warning (#14922)
Regressed in #14307
This commit is contained in:
parent
827b6c99ae
commit
4938381b78
|
@ -1,9 +1,9 @@
|
|||
/* global Pikaday:true */
|
||||
import discourseComputed, { on } from "discourse-common/utils/decorators";
|
||||
import Component from "@ember/component";
|
||||
import I18n from "I18n";
|
||||
import { Promise } from "rsvp";
|
||||
import { action } from "@ember/object";
|
||||
/* global Pikaday:true */
|
||||
import loadScript from "discourse/lib/load-script";
|
||||
import { schedule } from "@ember/runloop";
|
||||
|
||||
|
@ -144,9 +144,16 @@ export default Component.extend({
|
|||
}
|
||||
},
|
||||
|
||||
@discourseComputed()
|
||||
placeholder() {
|
||||
return I18n.t("dates.placeholder");
|
||||
@discourseComputed("_placeholder")
|
||||
placeholder: {
|
||||
get(_placeholder) {
|
||||
return _placeholder || I18n.t("dates.placeholder");
|
||||
},
|
||||
|
||||
set(value) {
|
||||
this.set("_placeholder", value);
|
||||
return value;
|
||||
},
|
||||
},
|
||||
|
||||
_opts() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user