Repository: ambari Updated Branches: refs/heads/branch-1.6.1 6a3a6edb5 -> 8b12f08b8
AMBARI-6349. After changing property and clicking save button in MapReduce Config Page, no comfirmation popup. (srimanth) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/8b12f08b Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/8b12f08b Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/8b12f08b Branch: refs/heads/branch-1.6.1 Commit: 8b12f08b800c26ec14764ba2bcbfa95436610ca9 Parents: 6a3a6ed Author: Srimanth Gunturi <[email protected]> Authored: Tue Jul 1 16:55:32 2014 -0700 Committer: Srimanth Gunturi <[email protected]> Committed: Tue Jul 1 17:34:52 2014 -0700 ---------------------------------------------------------------------- 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/8b12f08b/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 02a8c06..c137e5c 100644 --- a/ambari-web/app/controllers/main/service/info/configs.js +++ b/ambari-web/app/controllers/main/service/info/configs.js @@ -826,7 +826,7 @@ App.MainServiceInfoConfigsController = Em.Controller.extend({ } } } else if (serviceName === 'MAPREDUCE') { - var mapredConfigs = self.get('stepConfigs').findProperty('serviceName', 'MAPREDUCE').get('configs'); + var mapredConfigs = this.get('stepConfigs').findProperty('serviceName', 'MAPREDUCE').get('configs'); if (mapredConfigs.findProperty('name', 'mapred.local.dir').get('isNotDefaultValue') || mapredConfigs.findProperty('name', 'mapred.system.dir').get('isNotDefaultValue')) { dirChanged = true;
