rename close to cancel

This commit is contained in:
2023-05-21 01:52:08 +02:00
parent 65b641866e
commit 07eb24006d
2 changed files with 3 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ const authModalInitialStateOpen = ref(
<template #title>Sign out</template>
<template #default>Are you sure want to signout?</template>
<template #actions="{ close }">
<button class="btn-sm btn" @click="close">Close</button>
<button class="btn-sm btn" @click="close">Cancel</button>
<button class="btn-primary btn-sm btn" @click="signOut(close)">Sign out</button>
</template>
</Modal>