Browse Source

AMBARI-11241. Wrong service order when sorting on the allerts page (alexantonenko)

Alex Antonenko 10 năm trước cách đây
mục cha
commit
cb8308064b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      ambari-web/app/views/main/alert_definitions_view.js

+ 1 - 1
ambari-web/app/views/main/alert_definitions_view.js

@@ -144,7 +144,7 @@ App.MainAlertDefinitionsView = App.TableView.extend({
    */
   serviceSort: sort.fieldView.extend({
     column: 3,
-    name: 'service.serviceName',
+    name: 'serviceDisplayName',
     displayName: Em.I18n.t('common.service'),
     type: 'string'
   }),