mirror of https://github.com/rancher/ui.git
Show exit reason on delayed
This commit is contained in:
parent
9d1f4e4674
commit
e701589b7a
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue