fix job-finished event on run page

fixes regression introduced in 63301c73
pull/70/head
Oliver Giles 6 years ago
parent 0bacaf2a3e
commit b4df6f5c02

@ -693,7 +693,7 @@ const Run = function() {
this.$forceUpdate();
},
job_completed: function(data) {
state.job = data;
state.job = Object.assign(state.job, data);
state.jobsRunning = [];
this.$forceUpdate();
},

Loading…
Cancel
Save