enable/disable e2e encryption

This commit is contained in:
2023-05-28 21:45:47 +02:00
parent 77f5bafa2f
commit b4eab2d8e8
9 changed files with 372 additions and 59 deletions

View File

@@ -17,7 +17,7 @@ const emit = defineEmits<{
<template #activator="{ open }">
<UIButton size="sm" @click="open"><i class="fas fa-fw fa-trash" /></UIButton>
</template>
<template #title>Delete note</template>
<template #title><i class="fas fa-fw fa-trash mr-2" />Delete note</template>
<template #default>Are you sure you want to delete this note?</template>
<template #actions="{ close }">
<UIButton size="sm" color="primary" @click="emit('delete', close)">Delete notes</UIButton>
@@ -28,7 +28,7 @@ const emit = defineEmits<{
<template #activator="{ open }">
<UIButton size="sm" @click="open"><i class="fas fa-fw fa-sitemap" /></UIButton>
</template>
<template #title>Set root note</template>
<template #title><i class="fas fa-fw fa-sitemap mr-2" />Set root note</template>
<template #default>Are you sure you want to set this note as root note?</template>
<template #actions="{ close }">
<UIButton size="sm" @click="close">Cancel</UIButton>