FIX: correctly print html entity when used in a locale for none
This commit is contained in:
parent
5f318a5241
commit
75463e5a91
|
@ -193,7 +193,9 @@ export default Ember.Component.extend(UtilsMixin, PluginApiMixin, DomHelpersMixi
|
|||
|
||||
switch (typeof none) {
|
||||
case "string":
|
||||
return this.computeContentItem(this.noneValue, { name: I18n.t(none) });
|
||||
return this.computeContentItem(this.noneValue, {
|
||||
name: I18n.t(none).htmlSafe()
|
||||
});
|
||||
default:
|
||||
return this.computeContentItem(none);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue