FIX: additionalOpts update and change to function (#12546)
* FIX: additionalOpts should be added outside conditional * FIX: changed the computed property to function
This commit is contained in:
parent
70970bb791
commit
ff814dcfc1
|
@ -45,7 +45,6 @@ export default Component.extend({
|
|||
return canModifyTimer && showTopicTimerModal;
|
||||
},
|
||||
|
||||
@discourseComputed
|
||||
additionalOpts() {
|
||||
return {};
|
||||
},
|
||||
|
@ -94,11 +93,11 @@ export default Component.extend({
|
|||
categoryName: category.get("slug"),
|
||||
categoryUrl: category.get("url"),
|
||||
},
|
||||
options,
|
||||
this.additionalOpts
|
||||
options
|
||||
);
|
||||
}
|
||||
|
||||
options = Object.assign(options, this.additionalOpts());
|
||||
this.setProperties({
|
||||
title: `${moment(this.executeAt).format("LLLL")}`.htmlSafe(),
|
||||
notice: `${I18n.t(this._noticeKey(), options)}`.htmlSafe(),
|
||||
|
|
Loading…
Reference in New Issue