FIX: do not apply i18n if already done
This commit is contained in:
parent
05df918b9f
commit
f6dc992b0f
|
@ -17,7 +17,7 @@
|
|||
{{toolbar-popup-menu-options
|
||||
onPopupMenuAction=onPopupMenuAction
|
||||
onExpand=(action b.action b)
|
||||
title="composer.options"
|
||||
title=b.title
|
||||
headerIcon=b.icon
|
||||
class=b.className
|
||||
content=popupMenuOptions}}
|
||||
|
|
|
@ -10,7 +10,7 @@ export default DropdownSelectBoxComponent.extend({
|
|||
|
||||
@computed("title")
|
||||
collectionHeader(title) {
|
||||
return `<h3>${I18n.t(title)}</h3>`;
|
||||
return `<h3>${title}</h3>`;
|
||||
},
|
||||
|
||||
mutateValue(value) {
|
||||
|
|
Loading…
Reference in New Issue