]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+admin/system/runners/runner-job-list/runner-job-list.component.html
Add % to runner job percentage
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / system / runners / runner-job-list / runner-job-list.component.html
index d42f600e0d933a8bce3911d89d00bbb67726ff5a..654b60ca9f339f0991301fd9353a63bec144ffcd 100644 (file)
       <td>{{ runnerJob.type }}</td>
       <td>{{ runnerJob.state.label }}</td>
       <td>{{ runnerJob.priority }}</td>
-      <td>{{ runnerJob.progress }}</td>
+
+      <td>
+        <ng-container *ngIf="runnerJob.progress">{{ runnerJob.progress }}%</ng-container>
+      </td>
+
       <td>{{ runnerJob.runner?.name }}</td>
-      <td>{{ runnerJob.createdAt | date: 'short'  }}</td>
+      <td>{{ runnerJob.createdAt }}</td>
     </tr>
   </ng-template>