Allow role select to accept a placeholder

This commit is contained in:
Andrew Kingston 2022-06-09 14:27:29 +01:00
parent 71b18a4260
commit f351fb0019
1 changed files with 2 additions and 1 deletions

View File

@ -5,15 +5,16 @@
export let value export let value
export let error export let error
export let placeholder = null
</script> </script>
<Select <Select
bind:value bind:value
on:change on:change
options={$roles} options={$roles}
placeholder={null}
getOptionLabel={role => role.name} getOptionLabel={role => role.name}
getOptionValue={role => role._id} getOptionValue={role => role._id}
getOptionColour={role => RoleUtils.getRoleColour(role._id)} getOptionColour={role => RoleUtils.getRoleColour(role._id)}
{placeholder}
{error} {error}
/> />