You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ja...@apache.org on 2013/02/07 22:38:14 UTC

svn commit: r1443737 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/views/main/apps/item/dag_view.js

Author: jaimin
Date: Thu Feb  7 21:38:14 2013
New Revision: 1443737

URL: http://svn.apache.org/r1443737
Log:
 AMBARI-1367. Job# for Mapreduce jobs is seen as x. (jaimin)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/views/main/apps/item/dag_view.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1443737&r1=1443736&r2=1443737&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Thu Feb  7 21:38:14 2013
@@ -262,6 +262,8 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-1367. Job# for Mapreduce jobs is seen as x. (jaimin)
+
  AMBARI-1363. Graphs jump around upon loading. (jaimin)
 
  AMBARI-1362. Alerts for the hosts with ZooKeeper Server grows on every poll. (jaimin)

Modified: incubator/ambari/trunk/ambari-web/app/views/main/apps/item/dag_view.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/main/apps/item/dag_view.js?rev=1443737&r1=1443736&r2=1443737&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/main/apps/item/dag_view.js (original)
+++ incubator/ambari/trunk/ambari-web/app/views/main/apps/item/dag_view.js Thu Feb  7 21:38:14 2013
@@ -65,6 +65,9 @@ App.MainAppsItemDagView = Em.View.extend
 
     Ember.run.next(function(){
       self.draw();
+      if (self.get('jobs').length === 1) {
+        self.$().find('table tr td:first-child, table tr th:first-child').remove();
+      }
     });
 
   }.observes('controller.content.loadAllJobs'),