1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-10-27 20:34:20 +00:00

fix job-finished event on run page

fixes regression introduced in 63301c73
This commit is contained in:
Oliver Giles 2018-10-05 17:53:37 +03:00
parent 0bacaf2a3e
commit b4df6f5c02

View File

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