Fix job table colspan

pull/3628/head
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
1 changed files with 5 additions and 1 deletions

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