We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 590b6ff + 7392f7a commit 523e289Copy full SHA for 523e289
1 file changed
src/App.vue
@@ -7,13 +7,15 @@
7
<EditorHint v-if="editorHint" @close="editorHint=false" />
8
<NcContent v-else app-name="notes" :content-class="{loading: loading.notes}">
9
<NcAppNavigation :class="{loading: loading.notes, 'icon-error': error}">
10
- <NcAppNavigationNew
11
- v-show="!loading.notes && !error"
12
- :text="t('notes', 'New note')"
13
- @click="onNewNote"
14
- >
15
- <PlusIcon slot="icon" :size="20" />
16
- </NcAppNavigationNew>
+ <template #search>
+ <NcAppNavigationNew
+ v-show="!loading.notes && !error"
+ :text="t('notes', 'New note')"
+ @click="onNewNote"
+ >
+ <PlusIcon slot="icon" :size="20" />
17
+ </NcAppNavigationNew>
18
+ </template>
19
20
<template #list>
21
<CategoriesList v-show="!loading.notes"
0 commit comments