fix: pinning the bookmarks page (#1859)

Pinning the bookmarks page would accidentally pin the local timeline page due a forgotten `else if`.

Fixes #1858
This commit is contained in:
Emilia Michanek 2020-09-02 06:57:36 +02:00 committed by GitHub
parent 978afb8753
commit 60a146eb40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -42,6 +42,13 @@ export function navComputations (store) {
svg: '#fa-star',
label: 'Favorites'
}
} else if (pinnedPage === '/bookmarks') {
pinnedPageObject = {
name: 'bookmarks',
href: '/bookmarks',
svg: '#fa-bookmark',
label: 'Bookmarks'
}
} else if (pinnedPage.startsWith('/lists/')) {
pinnedPageObject = {
name: `lists/${pinnedPage.split('/').slice(-1)[0]}`,