You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by jo...@apache.org on 2014/09/17 14:33:53 UTC

[03/29] git commit: AMBARI-7332 Setting final flag and not saving allows you to navigate away. (Max Shepel via atkach)

AMBARI-7332 Setting final flag and not saving allows you to navigate away. (Max Shepel via atkach)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6b2dd66f
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6b2dd66f
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6b2dd66f

Branch: refs/heads/branch-alerts-dev
Commit: 6b2dd66f2d70b7b7d84ab0ce64292384d1753988
Parents: a8fb52f
Author: atkach <at...@hortonworks.com>
Authored: Tue Sep 16 16:49:17 2014 +0300
Committer: atkach <at...@hortonworks.com>
Committed: Tue Sep 16 16:51:26 2014 +0300

----------------------------------------------------------------------
 ambari-web/app/controllers/main/service/info/configs.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/6b2dd66f/ambari-web/app/controllers/main/service/info/configs.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/controllers/main/service/info/configs.js b/ambari-web/app/controllers/main/service/info/configs.js
index e10a0ba..e7ee933 100644
--- a/ambari-web/app/controllers/main/service/info/configs.js
+++ b/ambari-web/app/controllers/main/service/info/configs.js
@@ -248,7 +248,7 @@ App.MainServiceInfoConfigsController = Em.Controller.extend(App.ServerValidatorM
     }
     var hash = {};
     this.get('stepConfigs')[0].configs.forEach(function (config) {
-      hash[config.get('name')] = {value: config.get('value'), overrides: []};
+      hash[config.get('name')] = {value: config.get('value'), overrides: [], isFinal: config.get('isFinal')};
       if (!config.get('overrides')) return;
       if (!config.get('overrides.length')) return;