diff --git a/src/components/panes/configure-panes/custom/custom-control.tsx b/src/components/panes/configure-panes/custom/custom-control.tsx index 3ab9e818..d6d5c15e 100644 --- a/src/components/panes/configure-panes/custom/custom-control.tsx +++ b/src/components/panes/configure-panes/custom/custom-control.tsx @@ -149,7 +149,7 @@ const VIACustomControl = (props: VIACustomControlProps) => { option && props.updateValue(name, ...command, +option.value) } options={selectOptions} - defaultValue={selectOptions.find((p: any) => value[0] === p.value)} + value={selectOptions.find((p: any) => value[0] === p.value)} /> ); }