mirror of
https://github.com/pocketbase/pocketbase.git
synced 2026-02-05 12:11:48 -05:00
[#2510] added missing .length prop to the select searchable check
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
multiple={isMultiple}
|
||||
closable={!isMultiple || value?.length >= field.options?.maxSelect}
|
||||
items={field.options?.values}
|
||||
searchable={field.options?.values > 5}
|
||||
searchable={field.options?.values?.length > 5}
|
||||
bind:selected={value}
|
||||
/>
|
||||
{#if field.options?.maxSelect > 1}
|
||||
|
||||
Reference in New Issue
Block a user