aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/system/jobs/jobs.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/system/jobs/jobs.component.html')
-rw-r--r--client/src/app/+admin/system/jobs/jobs.component.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+admin/system/jobs/jobs.component.html b/client/src/app/+admin/system/jobs/jobs.component.html
index 406dc0fe5..b68179a41 100644
--- a/client/src/app/+admin/system/jobs/jobs.component.html
+++ b/client/src/app/+admin/system/jobs/jobs.component.html
@@ -46,7 +46,7 @@
46 <th style="width: 200px" class="job-type" i18n>Type</th> 46 <th style="width: 200px" class="job-type" i18n>Type</th>
47 <th style="width: 200px" class="job-priority" i18n>Priority <small>(1 = highest priority)</small></th> 47 <th style="width: 200px" class="job-priority" i18n>Priority <small>(1 = highest priority)</small></th>
48 <th style="width: 200px" class="job-state" i18n *ngIf="jobState === 'all'">State</th> 48 <th style="width: 200px" class="job-state" i18n *ngIf="jobState === 'all'">State</th>
49 <th style="width: 100px" class="job-progress" i18n *ngIf="hasProgress()">Progress</th> 49 <th style="width: 100px" class="job-progress" i18n *ngIf="hasGlobalProgress()">Progress</th>
50 <th style="width: 150px" class="job-date" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> 50 <th style="width: 150px" class="job-date" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
51 </tr> 51 </tr>
52 </ng-template> 52 </ng-template>
@@ -65,8 +65,8 @@
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" *ngIf="hasProgress()"> 68 <td class="job-progress c-hand" [pRowToggler]="job">
69 {{ getProgress(job) }} 69 <ng-container *ngIf="hasProgress(job)">{{ getProgress(job) }}</ng-container>
70 </td> 70 </td>
71 71
72 <td class="job-date c-hand" [pRowToggler]="job">{{ job.createdAt | date: 'short' }}</td> 72 <td class="job-date c-hand" [pRowToggler]="job">{{ job.createdAt | date: 'short' }}</td>