Skip to content

Commit

Permalink
Merge pull request #11 from nunawa/10-improve-support-for-json-array-…
Browse files Browse the repository at this point in the history
…columns

10 improve support for json array columns
  • Loading branch information
nunawa authored Feb 19, 2024
2 parents 2d2cc88 + c30d0b3 commit 06e64dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ProductCardText.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function ProductCardText({ type, product }) {
{product.memory}
</Badge>
<Badge className="me-1" bg="secondary">
{product.monitor}
{JSON.parse(product.monitor).join(" / ")}
</Badge>
</Card.Text>
);
Expand Down

0 comments on commit 06e64dc

Please sign in to comment.