Skip to content

Commit

Permalink
fix task id column not truncating (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascobie authored Aug 31, 2017
1 parent d4b49fd commit 800a2c4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/components/task/browse/display/task-list-display.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h4 bl-quick-list-item-title>{{task.id}} {{task.displayName}}</h4>

<bl-table *ngIf="!quickList">
<bl-thead>
<bl-column>Id</bl-column>
<bl-column style="width: 200px">Id</bl-column>
<bl-column>State</bl-column>
<bl-column>Created</bl-column>
<bl-column>Started</bl-column>
Expand All @@ -22,12 +22,12 @@ <h4 bl-quick-list-item-title>{{task.id}} {{task.displayName}}</h4>
</bl-thead>

<bl-row *ngFor="let task of tasks" [link]="['/jobs', jobId, 'tasks', task.id]" [key]="task.id" [contextmenu]="contextmenu(task)">
<bl-cell>{{task.id}}</bl-cell>
<bl-cell>{{task.state}}</bl-cell>
<bl-cell>{{formatDate(task.creationTime)}}</bl-cell>
<bl-cell>{{formatDate(task.executionInfo.startTime)}}</bl-cell>
<bl-cell>{{formatDate(task.executionInfo.endTime)}}</bl-cell>
<bl-cell>{{task.executionInfo.exitCode}}</bl-cell>
<bl-cell [value]="task.id"></bl-cell>
<bl-cell [value]="task.state"></bl-cell>
<bl-cell [value]="formatDate(task.creationTime)"></bl-cell>
<bl-cell [value]="formatDate(task.executionInfo.startTime)"></bl-cell>
<bl-cell [value]="formatDate(task.executionInfo.endTime)"></bl-cell>
<bl-cell [value]="task.executionInfo.exitCode"></bl-cell>
</bl-row>
</bl-table>

Expand Down

0 comments on commit 800a2c4

Please sign in to comment.