Repository: ambari
Updated Branches:
  refs/heads/branch-2.6 13f3df44a -> f28b9f17e


AMBARI-21959. [Intermittent] Clicking Next from Customize Services -> Misc tab 
does not load the Review page while installation (akovalenko)


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

Branch: refs/heads/branch-2.6
Commit: f28b9f17e7d3ad46bbef5e43c6be9a5d6c4d8ee9
Parents: 13f3df4
Author: Aleksandr Kovalenko <[email protected]>
Authored: Thu Sep 14 16:42:17 2017 +0300
Committer: Aleksandr Kovalenko <[email protected]>
Committed: Fri Sep 15 13:23:08 2017 +0300

----------------------------------------------------------------------
 ambari-web/app/views/common/controls_view.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/f28b9f17/ambari-web/app/views/common/controls_view.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/views/common/controls_view.js 
b/ambari-web/app/views/common/controls_view.js
index 2daf26c..f03e5c0 100644
--- a/ambari-web/app/views/common/controls_view.js
+++ b/ambari-web/app/views/common/controls_view.js
@@ -230,9 +230,9 @@ App.ServiceConfigTextFieldUserGroupWithID = 
Ember.View.extend(App.ServiceConfigP
   templateName: 
require('templates/wizard/controls_service_config_usergroup_with_id'),
 
   isUIDGIDVisible: function () {
-    var overrideUidDisabled = 
this.get('parentView').serviceConfigs.findProperty('name', 
'override_uid').value === 'false';
+    var overrideUid = 
this.get('parentView').serviceConfigs.findProperty('name', 'override_uid');
     //don't display the ugid field if there is no uid/gid for this property or 
override_uid is unchecked
-    if (Em.isNone(this.get('serviceConfig.ugid')) || overrideUidDisabled) {
+    if (Em.isNone(this.get('serviceConfig.ugid')) || overrideUid && 
overrideUid.value === 'false') {
       return false;
     }
 

Reply via email to