Repository: ambari Updated Branches: refs/heads/branch-2.5 a8ac99aed -> 11c8067e0
AMBARI-19182. Config Groups: Save button not enabled while trying to overwrite configs (onechiporenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/11c8067e Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/11c8067e Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/11c8067e Branch: refs/heads/branch-2.5 Commit: 11c8067e00e0c5abc3e3e269b87dcee0b1944a0f Parents: a8ac99a Author: Oleg Nechiporenko <[email protected]> Authored: Thu Jan 5 15:44:17 2017 +0200 Committer: Oleg Nechiporenko <[email protected]> Committed: Thu Jan 5 15:53:29 2017 +0200 ---------------------------------------------------------------------- ambari-web/app/models/configs/objects/service_config.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/11c8067e/ambari-web/app/models/configs/objects/service_config.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/models/configs/objects/service_config.js b/ambari-web/app/models/configs/objects/service_config.js index 7d07467..ea24ec4 100644 --- a/ambari-web/app/models/configs/objects/service_config.js +++ b/ambari-web/app/models/configs/objects/service_config.js @@ -158,6 +158,7 @@ App.ServiceConfig = Ember.Object.extend({ this._super(); this.set('dependentServiceNames', App.StackService.find(this.get('serviceName')).get('dependentServiceNames') || []); this.observeForeignKeys(); + this.setActiveProperties(); }, hasConfigIssues: Em.computed.someBy('activeProperties', 'hasIssues', true)
