Browse Source

AMBARI-2599. Services page: master components tooltip should show display names. (Andrii Babiichuk via yusaku)

Yusaku Sako 12 years ago
parent
commit
5555ff381a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ambari-web/app/views/main/dashboard/service.js

+ 1 - 1
ambari-web/app/views/main/dashboard/service.js

@@ -31,7 +31,7 @@ App.MainDashboardServiceHealthView = Em.View.extend({
   'data-original-title': function(){
     var popupText = "";
     this.get("service").get("hostComponents").filterProperty('isMaster', true).forEach(function(item){
-      popupText +=" " + item.get("componentName") + " " + item.get("componentTextStatus");
+      popupText += item.get("displayName") + " " + item.get("componentTextStatus") + "<br/>";
     });
     return popupText;
   }.property('service.healthStatus'),