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({
|
out.push({
|
||||||
translationKey: 'processesPage.list.table.exitReason',
|
translationKey: 'processesPage.list.table.exitReason',
|
||||||
name: 'exitReason',
|
name: 'exitReason',
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
{{process-link model=row}}
|
{{process-link model=row}}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
{{#if (eq which "completed")}}
|
{{#if (or (eq which "delayed") (eq which "completed"))}}
|
||||||
<td data-title="{{dt.exitReason}}">
|
<td data-title="{{dt.exitReason}}">
|
||||||
{{row.exitReason}}
|
{{row.exitReason}}
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue