Issue #1, Issue #4, Issue #7, Issue #10, Issue #25 #15

Merged
Ghost merged 6 commits from feat-issue-1 into main 2023-11-21 23:13:42 +00:00
Showing only changes of commit 9179e4c610 - Show all commits

View File

@@ -44,9 +44,9 @@ const SummaryDetails = ({
action={<CopyToClipboard contentRef={cardContentRef} />} action={<CopyToClipboard contentRef={cardContentRef} />}
/> />
<CardContent ref={cardContentRef}> <CardContent ref={cardContentRef}>
{entity.details.map((info: EntityDetails) => { {entity.details.map((info: EntityDetails, index: number) => {
return ( return (
<Typography color="text.primary" gutterBottom> <Typography key={index} color="text.primary" gutterBottom>
{info.label}: <code>{info.value}</code> {info.label}: <code>{info.value}</code>
</Typography> </Typography>
); );