[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Hide artists page

Kasper (Oct 6, 2024, 7:15 AM +0200) b57d22ec 342b4908

+2 -2
+2 -2
src/components/Sidebar.svelte
··· 1 1 <script lang="ts" context="module"> 2 2 export const special_playlists_nav = [ 3 3 { id: 'root', name: 'Songs', kind: 'special', path: '/playlist/root' }, 4 - { id: 'root', name: 'Artists', kind: 'special', path: '/artists' }, 4 + // { id: 'root', name: 'Artists', kind: 'special', path: '/artists' }, 5 5 ] 6 6 </script> 7 7 ··· 145 145 /> 146 146 <div class="spacer" /> 147 147 <SidebarItems 148 - parent_path="/artists" 148 + parent_path="/playlist/root" 149 149 children={($track_lists_details_map['root'].children || []).map((child_id) => ({ 150 150 path: '/playlist/' + child_id, 151 151 ...$track_lists_details_map[child_id],