1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00

Add placeholder setting to URLSelect

This commit is contained in:
Andrew Kingston 2022-08-23 14:59:18 +01:00
parent b621cb5b9d
commit 44e9395299

View file

@ -4,6 +4,7 @@
export let value
export let bindings
export let placeholder
$: urlOptions = $store.screens
.map(screen => screen.routing?.route)
@ -13,6 +14,7 @@
<DrawerBindableCombobox
{value}
{bindings}
{placeholder}
on:change
options={urlOptions}
appendBindingsAsOptions={false}