diff options
Diffstat (limited to 'app/client/system/system.reducer.js')
| -rw-r--r-- | app/client/system/system.reducer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/client/system/system.reducer.js b/app/client/system/system.reducer.js index 961db74..5067acd 100644 --- a/app/client/system/system.reducer.js +++ b/app/client/system/system.reducer.js @@ -179,7 +179,7 @@ const systemReducer = (state = systemInitialState, action) => { if (action.task === 'cpu' || (state.runner.cpu.task && action.task && state.runner.cpu.task.uuid === action.task.uuid)) { processor = 'cpu' } - else if (action.task === 'gpu' || (state.runner.cpu.task && action.task && state.runner.gpu.task.uuid === action.task.uuid)) { + else if (action.task === 'gpu' || (state.runner.gpu.task && action.task && state.runner.gpu.task.uuid === action.task.uuid)) { processor = 'gpu' } else { processor = null |
