Show exit reason on delayed

This commit is contained in:
Vincent Fiduccia 2017-02-16 15:50:16 -07:00
parent 9d1f4e4674
commit e701589b7a
No known key found for this signature in database
GPG Key ID: 2B29AD6BB2BB2582
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ export default Ember.Controller.extend({
}
];
if ( which === 'completed' ) {
if ( which === 'delayed' || which === 'completed' ) {
out.push({
translationKey: 'processesPage.list.table.exitReason',
name: 'exitReason',

View File

@ -25,7 +25,7 @@
{{process-link model=row}}
</td>
{{#if (eq which "completed")}}
{{#if (or (eq which "delayed") (eq which "completed"))}}
<td data-title="{{dt.exitReason}}">
{{row.exitReason}}
</td>