summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrii Tkach <atkach@apache.org>2016-11-17 17:37:27 +0200
committerAndrii Tkach <atkach@apache.org>2016-11-17 20:02:21 +0200
commit9fd886dbf9ad94d49d431816c9301007f28a8640 (patch)
tree598242393ed4f83157aaf808b3a958061ee73731
parent173d90c5b087cdaf0bd18ba4540121ac220db2e5 (diff)
AMBARI-18914 Bulk property mode doesnt throw any error on UI while adding an existing property. (atkach)
-rw-r--r--ambari-web/app/views/common/configs/service_configs_by_category_view.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ambari-web/app/views/common/configs/service_configs_by_category_view.js b/ambari-web/app/views/common/configs/service_configs_by_category_view.js
index bdcc382f18..5a4ae3a4d4 100644
--- a/ambari-web/app/views/common/configs/service_configs_by_category_view.js
+++ b/ambari-web/app/views/common/configs/service_configs_by_category_view.js
@@ -583,7 +583,7 @@ App.ServiceConfigsByCategoryView = Em.View.extend(App.UserPref, App.ConfigOverri
} else {
errorMessages.push(this.lineNumber(index) + Em.I18n.t('form.validator.configKey.specific').format(key));
}
- });
+ }, this);
if (errorMessages.length > 0) {
callback(errorMessages.join('<br>'), parsedConfig);