This commit is contained in:
Antelle 2016-03-12 20:24:31 +03:00
parent fff9135207
commit 8cf00c355d
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ var OpenConfigView = Backbone.View.extend({
},
setError: function(err) {
var errText = err && err.notFound ? Locale.openConfigErrorNotFound : Locale.openConfigError.replace('{}', err)
var errText = err && err.notFound ? Locale.openConfigErrorNotFound : Locale.openConfigError.replace('{}', err);
this.$el.find('.open__config-error').text(errText);
}
});