Repository: ambari Updated Branches: refs/heads/trunk 3ed90ad24 -> f63a5804d
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/f63a5804 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/f63a5804 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/f63a5804 Branch: refs/heads/trunk Commit: f63a5804d94aa7a1a3b8586b421818b65491a172 Parents: 3ed90ad Author: Srimanth Gunturi <[email protected]> Authored: Tue Jul 1 16:55:32 2014 -0700 Committer: Srimanth Gunturi <[email protected]> Committed: Tue Jul 1 17:35:42 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/f63a5804/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;
