We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02f5e46 commit dedcc4eCopy full SHA for dedcc4e
src/components/changelog/Releases.astro
@@ -23,5 +23,12 @@ const headings = entries.map((entry) => {
23
---
24
25
<StarlightPage frontmatter={{ title }} {headings}>
26
- {entries.map((entry) => <Release id={entry.id.substring(entry.id.lastIndexOf("/") + 1)} {entry} /><hr/>)}
+ {
27
+ entries.map((entry) => (
28
+ <>
29
+ <Release id={entry.id.substring(entry.id.lastIndexOf("/") + 1)} {entry} />
30
+ <hr />
31
+ </>
32
+ ))
33
+ }
34
</StarlightPage>
0 commit comments