fix: move add button into button row

This commit is contained in:
Trey Wallis 2024-04-29 09:37:17 -06:00
parent 76f574a300
commit 6edd1bbc65

View file

@ -49,11 +49,6 @@
{/each}
</TabList>
{/if}
<IconButton
ariaLabel="Add property filter group"
iconId="plus"
on:click={() => handleAddGroupClick()}
/>
<Spacer size="md" />
</Stack>
</Stack>
@ -65,6 +60,11 @@
iconId="pencil"
on:click={() => handleEditClick()}
/>
<IconButton
ariaLabel="Add property filter group"
iconId="plus"
on:click={() => handleAddGroupClick()}
/>
<Stack justify="flex-end" width="100%" align="center" spacing="sm">
<Switch
ariaLabel="Toggle property filter group"
@ -76,7 +76,6 @@
iconId="trash"
on:click={() => handleDeleteGroupClick()}
/>
<Spacer size="2xl" />
</Stack>
</Stack>
{/if}