rundetail: set run phase to cancelled on cancelRun call
This commit is contained in:
parent
0a47d7ecf7
commit
336869fe73
|
@ -150,7 +150,10 @@ export default {
|
||||||
this.run.stopping = true;
|
this.run.stopping = true;
|
||||||
stopRun(runid);
|
stopRun(runid);
|
||||||
},
|
},
|
||||||
cancelRun: cancelRun,
|
cancelRun(runid) {
|
||||||
|
this.run.phase = "cancelled";
|
||||||
|
cancelRun(runid);
|
||||||
|
},
|
||||||
restartRun(runid, fromStart) {
|
restartRun(runid, fromStart) {
|
||||||
this.dropdownActive = false;
|
this.dropdownActive = false;
|
||||||
restartRun(runid, fromStart);
|
restartRun(runid, fromStart);
|
||||||
|
|
Loading…
Reference in New Issue