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:
parent
978afb8753
commit
60a146eb40
1 changed files with 7 additions and 0 deletions
|
@ -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]}`,
|
||||
|
|
Loading…
Add table
Reference in a new issue