Add placeholder setting to URLSelect

This commit is contained in:
Andrew Kingston 2022-08-23 14:59:18 +01:00
parent bcda3e321e
commit de9d46dce8
1 changed files with 2 additions and 0 deletions

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}