1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Making filter drawer in automations full width.

This commit is contained in:
mike12345567 2021-09-16 13:45:22 +01:00
parent 13609bb9bf
commit 87d20e5c00

View file

@ -33,6 +33,7 @@
export let schemaProperties
let drawer
let tempFilters = lookForFilters(schemaProperties) || []
let fillWidth = true
$: stepId = block.stepId
$: bindings = getAvailableBindings(
@ -140,7 +141,7 @@
/>
{:else if value.customType === "filters"}
<ActionButton on:click={drawer.show}>Define filters</ActionButton>
<Drawer bind:this={drawer} title="Filtering">
<Drawer bind:this={drawer} {fillWidth} title="Filtering">
<Button cta slot="buttons" on:click={() => saveFilters(key)}
>Save</Button
>