Fix filter modal crashing when encountering an undefined option for a select field
This commit is contained in:
parent
fee24a83ad
commit
23b698b396
|
@ -162,7 +162,7 @@
|
|||
<Select
|
||||
bind:value={filter.value}
|
||||
options={fieldOptions(filter.key)}
|
||||
getOptionLabel={x => x.toString()}
|
||||
getOptionLabel={x => x?.toString() || ""}
|
||||
/>
|
||||
{:else if filter.key && isDate(filter.key)}
|
||||
<DatePicker
|
||||
|
|
Loading…
Reference in New Issue