[FIX] Caret not showing in topic-footer-mobile-dropdown
This commit is contained in:
parent
fd7af2e146
commit
21af7d7755
|
@ -11,7 +11,7 @@ export default SelectBoxKitComponent.extend({
|
|||
clearable: false,
|
||||
|
||||
@on("didReceiveAttrs")
|
||||
_setComponentOptions() {
|
||||
_setComboBoxOptions() {
|
||||
this.set("headerComponentOptions", Ember.Object.create({
|
||||
caretUpIcon: this.get("caretUpIcon"),
|
||||
caretDownIcon: this.get("caretDownIcon"),
|
||||
|
|
|
@ -9,10 +9,9 @@ export default ComboBoxComponent.extend({
|
|||
autoFilterable: false,
|
||||
|
||||
@on("didReceiveAttrs")
|
||||
_setComponentOptions() {
|
||||
this.set("headerComponentOptions", Ember.Object.create({
|
||||
selectedName: I18n.t(this.get("headerText"))
|
||||
}));
|
||||
_setTopicFooterMobileDropdownOptions() {
|
||||
this.get("headerComponentOptions")
|
||||
.set("selectedName", I18n.t(this.get("headerText")));
|
||||
},
|
||||
|
||||
@computed("topic", "topic.details", "value")
|
||||
|
|
Loading…
Reference in New Issue