feat(src/components/externallinkblock/index.tsx): support Emby icon

Display the Emby icon instead of Jellyfin when mediaserver type is Emby
This commit is contained in:
Jesse Boswell
2023-06-05 10:59:32 -05:00
parent 53f6a890b9
commit 672061cd64
2 changed files with 83 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
import EmbyLogo from '@app/assets/services/emby.svg';
import ImdbLogo from '@app/assets/services/imdb.svg';
import JellyfinLogo from '@app/assets/services/jellyfin.svg';
import PlexLogo from '@app/assets/services/plex.svg';
@@ -41,8 +42,11 @@ const ExternalLinkBlock = ({
>
{settings.currentSettings.mediaServerType === MediaServerType.PLEX ? (
<PlexLogo />
) : (
) : settings.currentSettings.mediaServerType ===
MediaServerType.JELLYFIN ? (
<JellyfinLogo />
) : (
<EmbyLogo />
)}
</a>
)}