mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Replace !(===) with !==
This commit is contained in:
parent
fb77e19da7
commit
0fe536a7e2
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ const GenresSectionContainer: FC<GenresSectionContainerProps> = ({
|
||||||
cardLayout: false,
|
cardLayout: false,
|
||||||
shape: itemType === BaseItemKind.MusicAlbum ? 'overflowSquare' : 'overflowPortrait',
|
shape: itemType === BaseItemKind.MusicAlbum ? 'overflowSquare' : 'overflowPortrait',
|
||||||
showParentTitle: (itemType === BaseItemKind.MusicAlbum),
|
showParentTitle: (itemType === BaseItemKind.MusicAlbum),
|
||||||
showYear: !(itemType === BaseItemKind.MusicAlbum)
|
showYear: (itemType !== BaseItemKind.MusicAlbum)
|
||||||
}}
|
}}
|
||||||
/>;
|
/>;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue