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

Special Features: Display extraType as secondaryText on card

This commit is contained in:
SenorSmartyPants 2022-01-20 15:34:22 -06:00
parent 16b777bfd1
commit 1e95442bb0

View file

@ -856,6 +856,10 @@ import ServerConnections from '../ServerConnections';
}
}
if (item.ExtraType && item.ExtraType !== 'Unknown') {
lines.push(globalize.translate(item.ExtraType));
}
if (options.showItemCounts) {
lines.push(getItemCountsHtml(options, item));
}