fix(ui): update artist link rendering and improve button styles

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan
2025-05-23 17:42:19 -04:00
parent 1e4c759d93
commit 370f8ba293
4 changed files with 7 additions and 179 deletions
+3 -1
View File
@@ -44,7 +44,9 @@ const parseAndReplaceArtists = (
result.push(displayAlbumArtist.slice(lastIndex, index))
}
// Add the artist link
result.push(<ALink artist={artist} className={className} />)
result.push(
<ALink artist={artist} className={className} key={artist.id} />,
)
lastIndex = index + artist.name.length
}
})