mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
Fix mediaSourceCount display
This commit is contained in:
parent
ed46ee5254
commit
36c19ec39a
@ -63,7 +63,7 @@ const useIndicator = (item: ItemDto) => {
|
|||||||
const getMediaSourceIndicator = () => {
|
const getMediaSourceIndicator = () => {
|
||||||
const mediaSourceCount = item.MediaSourceCount ?? 0;
|
const mediaSourceCount = item.MediaSourceCount ?? 0;
|
||||||
if (mediaSourceCount > 1) {
|
if (mediaSourceCount > 1) {
|
||||||
return <Box className='mediaSourceIndicator'>mediaSourceCount</Box>;
|
return <Box className='mediaSourceIndicator'>{mediaSourceCount}</Box>;
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user