1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Use consistent icon names

Co-authored-by: Dmitry Lyzo <56478732+dmitrylyzo@users.noreply.github.com>
This commit is contained in:
Bill Thornton 2024-09-17 17:33:44 -04:00 committed by GitHub
parent 414ae94312
commit cd14a6bcff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,7 +90,7 @@ export function getLibraryIcon(library: CollectionType | string | null | undefin
case CollectionType.Tvshows:
return 'tv';
case CollectionType.Trailers:
return 'local_movies';
return 'theaters';
case CollectionType.Musicvideos:
return 'music_video';
case CollectionType.Books:
@ -98,7 +98,7 @@ export function getLibraryIcon(library: CollectionType | string | null | undefin
case CollectionType.Boxsets:
return 'video_library';
case CollectionType.Playlists:
return 'library_add';
return 'queue';
case 'channels':
return 'videocam';
case undefined:
@ -131,7 +131,7 @@ export function getItemTypeIcon(itemType: BaseItemKind | string, defaultIcon?: s
case BaseItemKind.BoxSet:
return 'video_library';
case BaseItemKind.Playlist:
return 'library_add';
return 'queue';
case BaseItemKind.Photo:
return 'photo';
case BaseItemKind.PhotoAlbum: