Skip to content

Commit

Permalink
fix: Render Annotations for Playlist on Search page
Browse files Browse the repository at this point in the history
  • Loading branch information
anshg1214 committed Dec 27, 2024
1 parent b2202d8 commit 300e17a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/js/src/search/PlaylistSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,12 @@ export default function PlaylistSearch(props: PlayListSearchProps) {
{playlist.title}
</Link>
</td>
<td>{playlist?.annotation}</td>
<td
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={{
__html: playlist?.annotation || "",
}}
/>
<td>
<Link
to={`https://musicbrainz.org/user/${playlist?.creator}`}
Expand Down

0 comments on commit 300e17a

Please sign in to comment.