소스 검색

AMBARI-6846. Components filter for Clients does not work on Select Configuration Group Hosts page (alexantonenko)

Alex Antonenko 10 년 전
부모
커밋
a9cc53a9ec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ambari-web/app/controllers/main/service/manage_config_groups_controller.js

+ 1 - 1
ambari-web/app/controllers/main/service/manage_config_groups_controller.js

@@ -337,7 +337,7 @@ App.ManageConfigGroupsController = Em.Controller.extend({
     return App.StackServiceComponent.find().filterProperty('serviceName', this.get('serviceName')).map(function (component) {
       return Em.Object.create({
         displayName: component.get('displayName'),
-        componentName: component.get('isClient') ? 'CLIENT' : component.get('componentName'),
+        componentName: component.get('componentName'),
         selected: false
       });
     });