chore: Minor fix

This commit is contained in:
iamsivin
2024-11-20 20:31:07 +05:30
parent b9cb4cc65e
commit 6f4b37a6cd
2 changed files with 41 additions and 49 deletions
@@ -34,16 +34,14 @@ defineExpose({ dialogRef });
</script>
<template>
<Dialog ref="dialogRef" max-width="max-w-3xl" @confirm="handleDialogConfirm">
<template #form>
<ContactsForm is-new-contact @update="createNewContact" />
</template>
<Dialog ref="dialogRef" width="3xl" @confirm="handleDialogConfirm">
<ContactsForm is-new-contact @update="createNewContact" />
<template #footer>
<div class="flex items-center justify-between w-full gap-3">
<Button
:label="t('DIALOG.BUTTONS.CANCEL')"
variant="link"
class="h-10 hover:no-underline hover:text-n-brand"
class="h-10 hover:!no-underline hover:text-n-brand"
@click="closeDialog"
/>
<Button