summaryrefslogtreecommitdiff
path: root/public/bundle.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-27 04:33:08 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-27 04:33:08 +0200
commit9bb63160cc48111b0a57acaed85956cb9b82c59d (patch)
tree3ae9c28679f84f0f239f3b84bac33fe4f7402bc6 /public/bundle.js
parent9e08754fa2b4fde9b060606fe5851f31590690d6 (diff)
stop a running process, if you have the uuid
Diffstat (limited to 'public/bundle.js')
-rw-r--r--public/bundle.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/bundle.js b/public/bundle.js
index 67a30db..bddbe82 100644
--- a/public/bundle.js
+++ b/public/bundle.js
@@ -3496,7 +3496,7 @@ var System = function (_Component) {
(0, _preact.h)(
'button',
{ onClick: function onClick() {
- return actions.task.stop_task(cpu_test_task);
+ return actions.task.stop_task(runner.cpu);
} },
'Stop'
)
@@ -3514,7 +3514,7 @@ var System = function (_Component) {
(0, _preact.h)(
'button',
{ onClick: function onClick() {
- return actions.task.stop_task(gpu_test_task);
+ return actions.task.stop_task(runner.gpu);
} },
'Stop'
)
@@ -3532,7 +3532,7 @@ var System = function (_Component) {
(0, _preact.h)(
'button',
{ onClick: function onClick() {
- return actions.task.stop_task(live_test_task);
+ return actions.task.stop_task(runner.cpu);
} },
'Stop'
)