diff --git a/src/components/BookmarksList.vue b/src/components/BookmarksList.vue index 6c645f07..c9709420 100644 --- a/src/components/BookmarksList.vue +++ b/src/components/BookmarksList.vue @@ -120,7 +120,7 @@ export default { Bookmark, Folder, NcNoteCard, - MagnifyIcon + MagnifyIcon, }, computed: { bookmarks() { @@ -130,7 +130,7 @@ export default { return this.$store.state.fetchState.reachedEnd }, descriptionShown() { - return this.$route.name === this.routes.ARCHIVED || (this.$route.name === this.routes.SEARCH && Number(this.$route.params.folder) !== -1) || this.$route.name === this.routes.UNAVAILABLE || this.$route.name === this.routes.SHARED_FOLDERS || this. $route.name === this.routes.DUPLICATED + return this.$route.name === this.routes.ARCHIVED || (this.$route.name === this.routes.SEARCH && Number(this.$route.params.folder) !== -1) || this.$route.name === this.routes.UNAVAILABLE || this.$route.name === this.routes.SHARED_FOLDERS || this.$route.name === this.routes.DUPLICATED }, allBookmarksCount() { return this.$store.state.countsByFolder[-1] diff --git a/src/components/TreeFolder.vue b/src/components/TreeFolder.vue index 0469abab..1345b424 100644 --- a/src/components/TreeFolder.vue +++ b/src/components/TreeFolder.vue @@ -20,7 +20,9 @@ @click.stop="folder.children.length && (childrenShown = false)" /> {{ folder.title }} - {{ bookmarksCount | largeNumbers }} + + {{ bookmarksCount | largeNumbers }} +