bug or feature? home timeline, public timeline, known networks all missing from navigation bar
After updating Pleroma-fe to keep up with the latest changes, I found the navigation bar became extremely confusing. When I click at 'Timelines', there are no Home Timeline, Public Timeline nor Known Network from the dropdown menu, I can only see Bookmarks, Favorites and DMs, which to me aren't even considered 'Timelines'. So it becomes really weird that by clicking at 'Timelines', I can't see any timeline but only three irrelevant buttons.
Before | after |
---|---|
By reverting the change for src/components/nav_panel/nav_panel.vue
made in commit #0123872b (changing timelinesItems
back to timelinesList
) can partially fix this (dropdown menu showing the three timelines but trying to pin them doesn't work at all)
<NavigationEntry v-for="item in timelinesList" :key="item.name" :show-pin="true" :item="item" />
<NavigationEntry v-for="item in timelinesItems" :key="item.name" :show-pin="true" :item="item" />
Screen_Recording_2022-11-10_at_11.02.18_am
I'm kinda confused because I think the same code works for some other instances but not for mine.
Any reply is appreciated. Thanks.