Skip to content

Commit

Permalink
[FEAT](display): add lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien VIGNAU-ESPINE committed Oct 7, 2024
1 parent 1bc0b17 commit f8040a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/content/series/Tags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,14 @@ const Tags = ({ seriesId }: TagsProps) => {
{Object.entries(jsonNameValues).map(([key, value]) => (
<div key={key}>
<strong>{key}:</strong> {JSON.stringify(value)}
<hr/>
</div>
))}
<hr />
<hr/><hr/><hr/><hr/><hr/>
{Object.entries(jsonNameValues2).map(([key, value]) => (
<div key={key}>
<strong>{key}:</strong> {JSON.stringify(value)}
<hr/>
</div>
))}
{/* {JSON.stringify(header, null, 2)} */}
Expand Down

0 comments on commit f8040a1

Please sign in to comment.