Browse Source

AMBARI-10116 Use all host components in recommendations (additional). (ababiichuk)

aBabiichuk 10 years ago
parent
commit
217f3d71c6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ambari-web/app/mixins/common/serverValidator.js

+ 1 - 1
ambari-web/app/mixins/common/serverValidator.js

@@ -27,7 +27,7 @@ App.ServerValidatorMixin = Em.Mixin.create({
    * @type {boolean}
    */
   isWizard: function() {
-    return this.get('wizardController') && ['addServiceController' || 'installerController'].contains(this.get('wizardController.name'));
+    return this.get('wizardController') && ['addServiceController', 'installerController'].contains(this.get('wizardController.name'));
   }.property('wizardController.name'),
 
   /**