diff --git a/web/app/src/views/JobsView.vue b/web/app/src/views/JobsView.vue index 67bfd4fc..548b562e 100644 --- a/web/app/src/views/JobsView.vue +++ b/web/app/src/views/JobsView.vue @@ -78,6 +78,8 @@ export default { }, methods: { onTableJobClicked(rowData) { + // Don't route to the current job, as that'll deactivate the current task. + if (rowData.id == this.jobID) return; this._routeToJob(rowData.id); }, onTableTaskClicked(rowData) {