diff --git a/frontend/src/components/inputs/Selector.tsx b/frontend/src/components/inputs/Selector.tsx index 98ea9eeb3..fa08e77da 100644 --- a/frontend/src/components/inputs/Selector.tsx +++ b/frontend/src/components/inputs/Selector.tsx @@ -128,8 +128,9 @@ export function Selector( onChange(values as SelectorValueType); } else { - const value = (newValue as OnChangeValue, false>) - ?.value; + const value = + (newValue as OnChangeValue, false>)?.value ?? + null; onChange(value as SelectorValueType); }