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

Replace !(===) with !==

This commit is contained in:
Freako 2023-10-02 23:19:40 +05:30 committed by GitHub
parent fb77e19da7
commit 0fe536a7e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,7 +71,7 @@ const GenresSectionContainer: FC<GenresSectionContainerProps> = ({
cardLayout: false,
shape: itemType === BaseItemKind.MusicAlbum ? 'overflowSquare' : 'overflowPortrait',
showParentTitle: (itemType === BaseItemKind.MusicAlbum),
showYear: !(itemType === BaseItemKind.MusicAlbum)
showYear: (itemType !== BaseItemKind.MusicAlbum)
}}
/>;
};