fix(lint)

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2024-02-04 14:06:34 +01:00
parent 474a5f44f6
commit 6266dbb6cb
2 changed files with 5 additions and 3 deletions

View File

@ -120,7 +120,7 @@ export default {
Bookmark,
Folder,
NcNoteCard,
MagnifyIcon
MagnifyIcon,
},
computed: {
bookmarks() {

View File

@ -20,7 +20,9 @@
@click.stop="folder.children.length && (childrenShown = false)" />
{{ folder.title }}
</h3>
<NcCounterBubble v-if="typeof bookmarksCount !== 'undefined'">{{ bookmarksCount | largeNumbers }}</NcCounterBubble>
<NcCounterBubble v-if="typeof bookmarksCount !== 'undefined'">
{{ bookmarksCount | largeNumbers }}
</NcCounterBubble>
</div>
<div v-if="showChildren && childrenShown" class="treefolder__children">
<TreeFolder v-for="f in folder.children"