FIX: use getter and setter for computed properties (#25259)
This commit is contained in:
parent
60a4d09f1a
commit
d0486a72ac
|
@ -13,7 +13,8 @@ export default Mixin.create({
|
|||
},
|
||||
|
||||
@discourseComputed("period")
|
||||
startDate(period) {
|
||||
startDate: {
|
||||
get(period) {
|
||||
const fullDay = moment().locale("en").utc().endOf("day");
|
||||
|
||||
switch (period) {
|
||||
|
@ -30,6 +31,11 @@ export default Mixin.create({
|
|||
}
|
||||
},
|
||||
|
||||
set(period) {
|
||||
return period;
|
||||
},
|
||||
},
|
||||
|
||||
@discourseComputed()
|
||||
lastWeek() {
|
||||
return moment().locale("en").utc().endOf("day").subtract(1, "week");
|
||||
|
@ -41,10 +47,16 @@ export default Mixin.create({
|
|||
},
|
||||
|
||||
@discourseComputed()
|
||||
endDate() {
|
||||
endDate: {
|
||||
get() {
|
||||
return moment().locale("en").utc().endOf("day");
|
||||
},
|
||||
|
||||
set(endDate) {
|
||||
return endDate;
|
||||
},
|
||||
},
|
||||
|
||||
@discourseComputed()
|
||||
today() {
|
||||
return moment().locale("en").utc().endOf("day");
|
||||
|
|
Loading…
Reference in New Issue