From b4df6f5c021857f066c7daef0c0300c03e45b12a Mon Sep 17 00:00:00 2001 From: Oliver Giles Date: Fri, 5 Oct 2018 17:53:37 +0300 Subject: [PATCH] fix job-finished event on run page fixes regression introduced in 63301c73 --- src/resources/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/js/app.js b/src/resources/js/app.js index 4dfdaf6..3b97645 100644 --- a/src/resources/js/app.js +++ b/src/resources/js/app.js @@ -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(); },