diff --git a/src/components/Table/Inputs/Select.tsx b/src/components/Table/Inputs/Select.tsx index ebfa8a2..5147478 100644 --- a/src/components/Table/Inputs/Select.tsx +++ b/src/components/Table/Inputs/Select.tsx @@ -54,7 +54,7 @@ export default function Select({ // FIXME: This looks awfull, when updating the input use something better. for (let index = 0; index < target.options.length; index++) { const option = target.options[index]; - if (!option.selected) continue; + if (!option.selected || option.value === '') continue; values.push(option.value); }