feat: updates

This commit is contained in:
qier222 2022-03-17 19:30:43 +08:00
parent d96bd2a547
commit e3486ab550
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
23 changed files with 331 additions and 261 deletions

View file

@ -11,7 +11,7 @@ const ArtistInline = ({
<div className={classNames('flex truncate', className)}>
{artists.map((artist, index) => (
<span key={artist.id}>
<span className="hover:underline">{artist.name}</span>
<span className='hover:underline'>{artist.name}</span>
{index < artists.length - 1 ? ', ' : ''}&nbsp;
</span>
))}