georgs #23

Closed
Ghost wants to merge 50 commits from georgs into main
Showing only changes of commit 989452d905 - 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>
); );