diff options
author | Chocobozzz <me@florianbigard.com> | 2022-05-25 11:04:59 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-05-25 11:04:59 +0200 |
commit | 994b474331262ca17e5057aaea456251f45c0ed2 (patch) | |
tree | 97dd2134f8b71369ca15ca9505bfe92544551da5 | |
parent | a220b84b0e29c7ce1b32166aec07870696a28ef9 (diff) | |
download | PeerTube-994b474331262ca17e5057aaea456251f45c0ed2.tar.gz PeerTube-994b474331262ca17e5057aaea456251f45c0ed2.tar.zst PeerTube-994b474331262ca17e5057aaea456251f45c0ed2.zip |
Fix job progress column
-rw-r--r-- | client/src/app/+admin/system/jobs/jobs.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+admin/system/jobs/jobs.component.html b/client/src/app/+admin/system/jobs/jobs.component.html index 638d2380a..301591786 100644 --- a/client/src/app/+admin/system/jobs/jobs.component.html +++ b/client/src/app/+admin/system/jobs/jobs.component.html | |||
@@ -65,7 +65,7 @@ | |||
65 | <span class="badge" [ngClass]="getJobStateClass(job.state)">{{ job.state }}</span> | 65 | <span class="badge" [ngClass]="getJobStateClass(job.state)">{{ job.state }}</span> |
66 | </td> | 66 | </td> |
67 | 67 | ||
68 | <td class="job-progress c-hand" [pRowToggler]="job"> | 68 | <td *ngIf="hasGlobalProgress()" class="job-progress c-hand" [pRowToggler]="job"> |
69 | <ng-container *ngIf="hasProgress(job)">{{ getProgress(job) }}</ng-container> | 69 | <ng-container *ngIf="hasProgress(job)">{{ getProgress(job) }}</ng-container> |
70 | </td> | 70 | </td> |
71 | 71 | ||