1
0
mirror of synced 2025-12-25 02:17:36 -05:00

fix rendering of release notes patch on firefox (#20477)

This commit is contained in:
Mike Surowiec
2021-07-22 11:05:14 -04:00
committed by GitHub
parent b374c0cfcd
commit 1f3509b018

View File

@@ -43,9 +43,11 @@ export function PatchNotes({ patch, withReleaseNoteLabel }: Props) {
{sectionItems.map((item) => {
if (typeof item === 'string') {
return (
<li key={item} className="release-notes-list-item">
<span dangerouslySetInnerHTML={{ __html: item }} />
</li>
<li
key={item}
className="release-notes-list-item"
dangerouslySetInnerHTML={{ __html: item }}
/>
)
}