mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add condition to allow playlist to show item count
This commit is contained in:
parent
247d3f23e6
commit
2d81800e21
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ import '../../elements/emby-button/emby-button';
|
||||||
let date;
|
let date;
|
||||||
let count;
|
let count;
|
||||||
|
|
||||||
const showFolderRuntime = item.Type === 'MusicAlbum' || item.MediaType === 'MusicArtist' || item.MediaType === 'Playlist' || item.MediaType === 'MusicGenre';
|
const showFolderRuntime = item.Type === 'MusicAlbum' || item.MediaType === 'MusicArtist' || item.Type === 'Playlist' || item.MediaType === 'Playlist' || item.MediaType === 'MusicGenre';
|
||||||
|
|
||||||
if (showFolderRuntime) {
|
if (showFolderRuntime) {
|
||||||
count = item.SongCount || item.ChildCount;
|
count = item.SongCount || item.ChildCount;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue