From 87abf173c1da5b843f29dcd45800143759f4b571 Mon Sep 17 00:00:00 2001 From: ScriptSmith Date: Mon, 5 Aug 2024 11:43:23 +1000 Subject: [PATCH] Don't allow 'IPU' to be selected as a valid option --- src/components/tool/guide/EresearchJob/EresearchJob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tool/guide/EresearchJob/EresearchJob.js b/src/components/tool/guide/EresearchJob/EresearchJob.js index d5be4b81..9e34fc78 100644 --- a/src/components/tool/guide/EresearchJob/EresearchJob.js +++ b/src/components/tool/guide/EresearchJob/EresearchJob.js @@ -238,7 +238,7 @@ const getConfigGroups = (config, onConfigChange = () => {}) => { /> ), show: (config) => config?.service, - selected: (config) => isValidChoice(hardware, config?.hardware), + selected: (config) => isValidChoice(["CPU", "GPU"], config?.hardware), }; }, cpuVendor: getCpuVendor(config, onChange),