FIX: Don't raise error if I18n key is not found
This commit is contained in:
parent
6cab53abd4
commit
fbd0d47fce
|
@ -192,7 +192,7 @@ export default Ember.Component.extend(UtilsMixin, PluginApiMixin, DomHelpersMixi
|
||||||
switch (typeof none) {
|
switch (typeof none) {
|
||||||
case "string":
|
case "string":
|
||||||
return this.computeContentItem(this.noneValue, {
|
return this.computeContentItem(this.noneValue, {
|
||||||
name: I18n.t(none).htmlSafe()
|
name: (I18n.t(none) || "").htmlSafe()
|
||||||
});
|
});
|
||||||
default:
|
default:
|
||||||
return this.computeContentItem(none);
|
return this.computeContentItem(none);
|
||||||
|
|
Loading…
Reference in New Issue