diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-27 04:33:08 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-27 04:33:08 +0200 |
| commit | 9bb63160cc48111b0a57acaed85956cb9b82c59d (patch) | |
| tree | 3ae9c28679f84f0f239f3b84bac33fe4f7402bc6 /public/bundle.js | |
| parent | 9e08754fa2b4fde9b060606fe5851f31590690d6 (diff) | |
stop a running process, if you have the uuid
Diffstat (limited to 'public/bundle.js')
| -rw-r--r-- | public/bundle.js | 6 |
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' ) |
