diff --git a/components/release-notes/PatchNotes.tsx b/components/release-notes/PatchNotes.tsx index 5980312327..ad40c02d1c 100644 --- a/components/release-notes/PatchNotes.tsx +++ b/components/release-notes/PatchNotes.tsx @@ -3,6 +3,7 @@ import cx from 'classnames' import { slug } from 'github-slugger' import { ReleaseNotePatch } from './types' import { Link } from 'components/Link' +import { LinkIconHeading } from 'components/article/LinkIconHeading' import styles from './PatchNotes.module.scss' @@ -25,6 +26,7 @@ export function PatchNotes({ patch, withReleaseNoteLabel }: Props) { <> {Object.entries(patch.sections).map(([key, sectionItems], i, arr) => { const isLast = i === arr.length - 1 + const sectionSlug = `${patch.version}-${key.replaceAll('_', '-')}` return (