mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 07:11:34 +08:00
FIX: Don't raise error if I18n key is not found
This commit is contained in:
@ -192,7 +192,7 @@ export default Ember.Component.extend(UtilsMixin, PluginApiMixin, DomHelpersMixi
|
||||
switch (typeof none) {
|
||||
case "string":
|
||||
return this.computeContentItem(this.noneValue, {
|
||||
name: I18n.t(none).htmlSafe()
|
||||
name: (I18n.t(none) || "").htmlSafe()
|
||||
});
|
||||
default:
|
||||
return this.computeContentItem(none);
|
||||
|
Reference in New Issue
Block a user