listview
This commit is contained in:
@@ -23,9 +23,7 @@ const emit = defineEmits<{
|
||||
</template>
|
||||
<template #default>Are you sure you want to delete this note?</template>
|
||||
<template #actions="{ close }">
|
||||
<button class="btn-primary btn-sm btn mr-1" @click="emit('delete', close)">
|
||||
Delete note
|
||||
</button>
|
||||
<button class="btn-primary btn-sm btn" @click="emit('delete', close)">Delete note</button>
|
||||
<button class="btn-sm btn" @click="close">Close</button>
|
||||
</template>
|
||||
</Modal>
|
||||
@@ -35,12 +33,10 @@ const emit = defineEmits<{
|
||||
<i class="fas fa-fw fa-sitemap" />
|
||||
</button>
|
||||
</template>
|
||||
<template #default>
|
||||
Are you sure you want to set this note as root note?
|
||||
</template>
|
||||
<template #default>Are you sure you want to set this note as root note?</template>
|
||||
<template #actions="{ close }">
|
||||
<button class="btn-sm btn" @click="close">Close</button>
|
||||
<button class="btn-primary btn-sm btn mr-1" @click="emit('setRoot', close)">
|
||||
<button class="btn-primary btn-sm btn" @click="emit('setRoot', close)">
|
||||
Set current note as root
|
||||
</button>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user