Add missing bindings to show notification action
This commit is contained in:
parent
acc71cb0e9
commit
bc60dfbe66
|
@ -4,6 +4,7 @@
|
||||||
import DrawerBindableInput from "components/common/bindings/DrawerBindableInput.svelte"
|
import DrawerBindableInput from "components/common/bindings/DrawerBindableInput.svelte"
|
||||||
|
|
||||||
export let parameters
|
export let parameters
|
||||||
|
export let bindings = []
|
||||||
|
|
||||||
const types = [
|
const types = [
|
||||||
{
|
{
|
||||||
|
@ -39,6 +40,7 @@
|
||||||
<Select bind:value={parameters.type} options={types} placeholder={null} />
|
<Select bind:value={parameters.type} options={types} placeholder={null} />
|
||||||
<Label>Message</Label>
|
<Label>Message</Label>
|
||||||
<DrawerBindableInput
|
<DrawerBindableInput
|
||||||
|
{bindings}
|
||||||
value={parameters.message}
|
value={parameters.message}
|
||||||
on:change={e => (parameters.message = e.detail)}
|
on:change={e => (parameters.message = e.detail)}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue