1
0
Fork 0
mirror of synced 2024-10-06 04:54:52 +13:00

Add missing bindings to show notification action

This commit is contained in:
Andrew Kingston 2022-08-22 11:10:47 +01:00
parent 19c99f4390
commit 60ed162fe3

View file

@ -4,6 +4,7 @@
import DrawerBindableInput from "components/common/bindings/DrawerBindableInput.svelte"
export let parameters
export let bindings = []
const types = [
{
@ -39,6 +40,7 @@
<Select bind:value={parameters.type} options={types} placeholder={null} />
<Label>Message</Label>
<DrawerBindableInput
{bindings}
value={parameters.message}
on:change={e => (parameters.message = e.detail)}
/>