1
0
Fork 0
mirror of synced 2024-06-02 18:44:54 +12:00

Add missing bindings to show notification action

This commit is contained in:
Andrew Kingston 2022-08-22 11:10:47 +01:00
parent acc71cb0e9
commit bc60dfbe66

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)}
/>