You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ma...@apache.org on 2014/04/05 02:05:28 UTC

[42/50] [abbrv] git commit: Code review feedback.

Code review feedback.

Removed latest activity and task link column.


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/8f4e9e36
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/8f4e9e36
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/8f4e9e36

Branch: refs/heads/mansu/job_page
Commit: 8f4e9e36f81bc2c88dbad1805f2419d17f4bd5ec
Parents: 0422fbf
Author: Suman Karumuri <sk...@twitter.com>
Authored: Fri Apr 4 09:55:48 2014 -0700
Committer: Suman Karumuri <sk...@twitter.com>
Committed: Fri Apr 4 09:55:48 2014 -0700

----------------------------------------------------------------------
 .../org/apache/aurora/scheduler/http/ui/js/controllers.js     | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/8f4e9e36/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
----------------------------------------------------------------------
diff --git a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
index fef9956..c400878 100644
--- a/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
+++ b/src/main/resources/org/apache/aurora/scheduler/http/ui/js/controllers.js
@@ -305,14 +305,7 @@ auroraUIControllers.controller('JobController',
     var taskColumns = [
       {label: 'Instance', map: 'instanceId'},
       {label: 'Status', map: 'status', cellTemplateUrl: '/taskStatus.html'},
-      {label: 'Last Active',
-        map: 'latestActivity',
-        formatFunction: function (date) {
-          return moment(date).fromNow();
-        }
-      },
       {label: 'Host', map: 'host', cellTemplateUrl: '/taskSandbox.html'},
-      {label: '', map: 'taskId', cellTemplateUrl: '/taskLink.html'}
     ];
 
     $scope.activeTasksTableColumns = taskColumns;