fix: pinning the bookmarks page (#1859)

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

Fixes #1858
fix-cache-bookmarks-page
Emilia Michanek 2020-09-02 06:57:36 +02:00 zatwierdzone przez GitHub
rodzic 978afb8753
commit 60a146eb40
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -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]}`,