Skip to content

Commit

Permalink
Merge pull request #1787 from HubSpot/run-time
Browse files Browse the repository at this point in the history
Add run time column to request item's task history
  • Loading branch information
benheng committed Apr 24, 2018
2 parents 8e67cad + 83f6b5b commit 88aab42
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,12 @@ class TaskHistoryTable extends Component {
key="updated"
cellData={(task) => Utils.timestampFromNow(task.updatedAt)}
/>
<Column
label="Run Time"
id="run-time"
key="run-time"
cellData={(task) => Utils.duration(task.updatedAt - task.taskId.startedAt)}
/>
<Column
id="actions-column"
key="actions-column"
Expand Down

0 comments on commit 88aab42

Please sign in to comment.