fix:  

This commit is contained in:
Cory Dransfeldt 2024-11-08 14:25:37 -08:00
parent ea807b7e9c
commit b1b8c1c926
No known key found for this signature in database

View file

@ -145,7 +145,7 @@ const generateAssociatedMediaHTML = (data, isGenre = false) => {
const year = item.year ? ` (${item.year})` : ""; const year = item.year ? ` (${item.year})` : "";
const author = item.author ? ` by ${item.author}` : ""; const author = item.author ? ` by ${item.author}` : "";
const totalPlays = item.total_plays const totalPlays = item.total_plays
? ` <strong class="highlight-text">${item.total_plays} ${ ? `&nbsp;<strong class="highlight-text">${item.total_plays} ${
item.total_plays === 1 ? "play" : "plays" item.total_plays === 1 ? "play" : "plays"
}</strong>` }</strong>`
: ""; : "";