diff --git a/src/workspaces/officerdev/src/apps/Music/MusicDetail.tsx b/src/workspaces/officerdev/src/apps/Music/MusicDetail.tsx index 682b22d9..8aee160d 100644 --- a/src/workspaces/officerdev/src/apps/Music/MusicDetail.tsx +++ b/src/workspaces/officerdev/src/apps/Music/MusicDetail.tsx @@ -261,13 +261,22 @@ export const MusicDetail = () => { )} - {/* Grid */} + {/* Grid — a library root, or an artist folder (crumbs>=2) whose albums aren't grouped by a + discography. Show an artist header + heart on the latter. */} {!album && !disco && cwd && !loading && ( -
- {folders.map((f) => ( - 0} /> - ))} - {!folders.length &&

Empty

} +
+ {crumbs.length >= 2 && ( +
+

{crumbs[crumbs.length - 1]}

+ +
+ )} +
+ {folders.map((f) => ( + 0} /> + ))} + {!folders.length &&

Empty

} +
)}