aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/system/jobs/jobs.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/system/jobs/jobs.component.ts')
-rw-r--r--client/src/app/+admin/system/jobs/jobs.component.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/+admin/system/jobs/jobs.component.ts b/client/src/app/+admin/system/jobs/jobs.component.ts
index 5355d2c20..d08079f7e 100644
--- a/client/src/app/+admin/system/jobs/jobs.component.ts
+++ b/client/src/app/+admin/system/jobs/jobs.component.ts
@@ -21,19 +21,19 @@ export class JobsComponent extends RestTable implements OnInit {
21 21
22 jobType: JobTypeClient = 'all' 22 jobType: JobTypeClient = 'all'
23 jobTypes: JobTypeClient[] = [ 23 jobTypes: JobTypeClient[] = [
24 'all',
25 'activitypub-follow', 24 'activitypub-follow',
26 'activitypub-http-broadcast', 25 'activitypub-http-broadcast',
27 'activitypub-http-fetcher', 26 'activitypub-http-fetcher',
28 'activitypub-http-unicast', 27 'activitypub-http-unicast',
28 'activitypub-refresher',
29 'all',
29 'email', 30 'email',
30 'video-transcoding',
31 'video-file-import', 31 'video-file-import',
32 'video-import', 32 'video-import',
33 'videos-views', 33 'video-live-ending',
34 'activitypub-refresher',
35 'video-redundancy', 34 'video-redundancy',
36 'video-live-ending' 35 'video-transcoding',
36 'videos-views'
37 ] 37 ]
38 38
39 jobs: Job[] = [] 39 jobs: Job[] = []
@@ -75,7 +75,7 @@ export class JobsComponent extends RestTable implements OnInit {
75 getColspan () { 75 getColspan () {
76 if (this.jobState === 'all' && this.hasProgress()) return 6 76 if (this.jobState === 'all' && this.hasProgress()) return 6
77 77
78 if (this.jobState === 'all') return 5 78 if (this.jobState === 'all' || this.hasProgress()) return 5
79 79
80 return 4 80 return 4
81 } 81 }