Skip to content

Commit

Permalink
improved visuals
Browse files Browse the repository at this point in the history
  • Loading branch information
CEbbinghaus committed Dec 17, 2024
1 parent b3b5b73 commit 288ca0c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions docs/components/ChangeLog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ import React from "react";

function TagWithCommits({ tag, commits }: { tag: string, commits: Commit[] }): ReactElement {
return (
<>
{tag || "Prerelease"}
<div style={{margin: "6px auto"}}>
<h3 style={{fontWeight: "bolder"}}>{tag || "Prerelease"}</h3>
<ul>
{
commits.map(v => (
<>
* {v.message}<br />
</>
<li>
{v.message}
</li>
))
}
</>
</ul>
</div>
)
}

Expand Down

0 comments on commit 288ca0c

Please sign in to comment.