Updated Branches: refs/heads/trunk 8250e9808 -> 5555ff381
AMBARI-2599. Services page: master components tooltip should show display names. (Andrii Babiichuk via yusaku) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/5555ff38 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/5555ff38 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/5555ff38 Branch: refs/heads/trunk Commit: 5555ff381a18577d2c6b3c94ccc431d03debe563 Parents: 8250e98 Author: Yusaku Sako <[email protected]> Authored: Tue Jul 9 10:52:17 2013 -0700 Committer: Yusaku Sako <[email protected]> Committed: Tue Jul 9 10:52:22 2013 -0700 ---------------------------------------------------------------------- ambari-web/app/views/main/dashboard/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/5555ff38/ambari-web/app/views/main/dashboard/service.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/dashboard/service.js b/ambari-web/app/views/main/dashboard/service.js index b004ff1..1753f46 100644 --- a/ambari-web/app/views/main/dashboard/service.js +++ b/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'),
