From cd14a6bcffe11c2a5dccf23f92d6c9633e844f8c Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Tue, 17 Sep 2024 17:33:44 -0400 Subject: [PATCH] Use consistent icon names Co-authored-by: Dmitry Lyzo <56478732+dmitrylyzo@users.noreply.github.com> --- src/utils/image.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/image.ts b/src/utils/image.ts index 4eafff56a6..bcd3d667ff 100644 --- a/src/utils/image.ts +++ b/src/utils/image.ts @@ -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: