mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 19:01:40 +00:00
Fix incorrect album artist sidebar icon
This commit is contained in:
parent
94b649fefe
commit
960c126283
1 changed files with 3 additions and 0 deletions
|
|
@ -38,6 +38,9 @@ export const SidebarIcon = ({ active, route, size }: SidebarIconProps) => {
|
||||||
case AppRoute.LIBRARY_ALBUMS:
|
case AppRoute.LIBRARY_ALBUMS:
|
||||||
if (active) return <RiAlbumFill size={size} />;
|
if (active) return <RiAlbumFill size={size} />;
|
||||||
return <RiAlbumLine size={size} />;
|
return <RiAlbumLine size={size} />;
|
||||||
|
case AppRoute.LIBRARY_ALBUM_ARTISTS:
|
||||||
|
if (active) return <RiUserVoiceFill size={size} />;
|
||||||
|
return <RiUserVoiceLine size={size} />;
|
||||||
case AppRoute.LIBRARY_ARTISTS:
|
case AppRoute.LIBRARY_ARTISTS:
|
||||||
if (active) return <RiUserVoiceFill size={size} />;
|
if (active) return <RiUserVoiceFill size={size} />;
|
||||||
return <RiUserVoiceLine size={size} />;
|
return <RiUserVoiceLine size={size} />;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue