FIX: do not apply i18n if already done

This commit is contained in:
Joffrey JAFFEUX 2017-12-26 09:51:45 +01:00 committed by GitHub
parent 05df918b9f
commit f6dc992b0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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}}

View File

@ -10,7 +10,7 @@ export default DropdownSelectBoxComponent.extend({
@computed("title")
collectionHeader(title) {
return `<h3>${I18n.t(title)}</h3>`;
return `<h3>${title}</h3>`;
},
mutateValue(value) {