Fix job table colspan
This commit is contained in:
parent
24516aa26a
commit
ed4bc63141
1 changed files with 5 additions and 1 deletions
|
@ -73,7 +73,11 @@ export class JobsComponent extends RestTable implements OnInit {
|
|||
}
|
||||
|
||||
getColspan () {
|
||||
return this.jobState === 'all' ? 5 : 4
|
||||
if (this.jobState === 'all' && this.hasProgress()) return 6
|
||||
|
||||
if (this.jobState === 'all') return 5
|
||||
|
||||
return 4
|
||||
}
|
||||
|
||||
onJobStateOrTypeChanged () {
|
||||
|
|
Loading…
Reference in a new issue