mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 12:30:06 +02:00
fix links in album description
This commit is contained in:
@@ -98,7 +98,11 @@ const formatArtists = (artists: null | RelatedArtist[] | undefined) =>
|
||||
));
|
||||
|
||||
const formatComment = (item: Album | Song) =>
|
||||
item.comment ? <Spoiler maxHeight={50}>{replaceURLWithHTMLLinks(item.comment)}</Spoiler> : null;
|
||||
item.comment ? (
|
||||
<Spoiler maxHeight={50}>
|
||||
<Text>{replaceURLWithHTMLLinks(item.comment)}</Text>
|
||||
</Spoiler>
|
||||
) : null;
|
||||
|
||||
const FormatGenre = (item: Album | AlbumArtist | Playlist | Song) => {
|
||||
if (!item.genres?.length) {
|
||||
|
||||
Reference in New Issue
Block a user