Author: yusaku
Date: Sat Jan 19 01:49:23 2013
New Revision: 1435455

URL: http://svn.apache.org/viewvc?rev=1435455&view=rev
Log:
AMBARI-1227. Host-level task popup is not showing the display name for 
components. (yusaku)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1435455&r1=1435454&r2=1435455&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Sat Jan 19 01:49:23 2013
@@ -75,6 +75,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-1227. Host-level task popup is not showing the display name for
+ components. (yusaku)
+
  AMBARI-1226. On Dashboard, links to host components are missing. (yusaku)
 
  AMBARI-1219. After adding hosts, the number of live TaskTrackers is not

Modified: incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js?rev=1435455&r1=1435454&r2=1435455&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js (original)
+++ incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js Sat Jan 19 
01:49:23 2013
@@ -240,7 +240,7 @@ App.HostStatusView = Em.View.extend({
               taskInfo.set('id', _task.Tasks.id);
               taskInfo.set('command', _task.Tasks.command.toLowerCase());
               taskInfo.set('status', 
App.format.taskStatus(_task.Tasks.status));
-              taskInfo.set('role', _task.Tasks.role);
+              taskInfo.set('role', App.format.role(_task.Tasks.role));
               taskInfo.set('stderr', _task.Tasks.stderr);
               taskInfo.set('stdout', _task.Tasks.stdout);
               taskInfo.set('isVisible', true);


Reply via email to