Repository: ambari Updated Branches: refs/heads/branch-feature-AMBARI-18456 ab1c10016 -> 936626bdb
AMBARI-18914 Bulk property mode doesnt throw any error on UI while adding an existing property. (atkach) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6c727311 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6c727311 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6c727311 Branch: refs/heads/branch-feature-AMBARI-18456 Commit: 6c727311fb28b7035d57efb3a1591189ca07dd64 Parents: 2c884ab Author: Andrii Tkach <[email protected]> Authored: Thu Nov 17 17:37:27 2016 +0200 Committer: Andrii Tkach <[email protected]> Committed: Thu Nov 17 18:01:34 2016 +0200 ---------------------------------------------------------------------- .../app/views/common/configs/service_configs_by_category_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/6c727311/ambari-web/app/views/common/configs/service_configs_by_category_view.js ---------------------------------------------------------------------- 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 f78bb5f..dfcd5df 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 @@ -611,7 +611,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);
