Skip to content

Commit

Permalink
fix monitoried failed jobs screen
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Mar 31, 2020
1 parent e2bb711 commit 066ada5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"/app.js": "/app.js?id=ff802ff759dc8ff561d9",
"/app.js": "/app.js?id=e2a3de7cec3c082b6302",
"/app.css": "/app.css?id=81fbc8fec874ad3203d7",
"/app-dark.css": "/app-dark.css?id=3d68663a6ab8e86cb5dc"
}
4 changes: 4 additions & 0 deletions resources/js/screens/monitoring/job-row.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<td v-if="$parent.type == 'jobs'" class="table-fit">
<span>{{ job.completed_at ? (job.completed_at - job.reserved_at).toFixed(2)+'s' : '-' }}</span>
</td>

<td v-if="$parent.type == 'failed'" class="table-fit">
{{ readableTimestamp(job.failed_at) }}
</td>
</tr>
</template>

Expand Down

0 comments on commit 066ada5

Please sign in to comment.