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

Fix version indicator not respecting settings on card

This commit is contained in:
MrTimscampi 2020-05-10 10:21:43 +02:00
parent 71a6102086
commit f468e32ac4

View file

@ -1313,7 +1313,7 @@ import 'programStyles';
}
const mediaSourceCount = item.MediaSourceCount || 1;
if (mediaSourceCount > 1) {
if (mediaSourceCount > 1 && (!options.disableIndicators || options.disableIndicators === false)) {
innerCardFooter += '<div class="mediaSourceIndicator">' + mediaSourceCount + '</div>';
}