Skip to content
Snippets Groups Projects
Commit 27d2ac6f authored by Matrix-Sasuke's avatar Matrix-Sasuke
Browse files

fix bookmarks not showing on mobile properly

parent 4fcd5112
Branches feature/object-normalization
No related tags found
No related merge requests found
Pipeline #50871 passed
Bookmarks on mobile were no longer showing
Bookmarks visible again on mobile
......@@ -32,7 +32,8 @@ export const TIMELINES = {
bookmarks: {
route: 'bookmarks',
icon: 'bookmark',
label: 'nav.bookmarks'
label: 'nav.bookmarks',
criteria: ['!supportsBookmarkFolders']
},
favorites: {
routeObject: { name: 'user-profile', query: { tab: 'favorites' } },
......
......@@ -76,6 +76,21 @@
/> {{ $t("nav.lists") }}
</router-link>
</li>
<li
v-if="currentUser"
@click="toggleDrawer"
>
<router-link
:to="{ name: 'bookmarks' }"
class="menu-item"
>
<FAIcon
fixed-width
class="fa-scale-110 fa-old-padding"
icon="bookmark"
/> {{ $t("nav.bookmarks") }}
</router-link>
</li>
<li
v-if="currentUser && pleromaChatMessagesAvailable"
@click="toggleDrawer"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment