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