1
0
Fork 0

Fix job table colspan

This commit is contained in:
Chocobozzz 2021-01-21 16:01:30 +01:00
parent 24516aa26a
commit ed4bc63141
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -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 () {