fix: added + icon in Add Section button

This commit is contained in:
Shariq Ansari 2024-06-19 13:39:58 +05:30
parent 2a253a1d69
commit 756b24038a

View File

@ -112,9 +112,13 @@
variant="outline"
:label="__('Add Section')"
@click="
sections.push({ label: 'New Section', opened: true, fields: [] })
sections.push({ label: __('New Section'), opened: true, fields: [] })
"
/>
>
<template #prefix>
<FeatherIcon name="plus" class="h-4" />
</template>
</Button>
</div>
</div>
</template>