Georg-Stahn-georgs #25

Merged
Luis merged 52 commits from Georg-Stahn-georgs into main 2023-12-02 11:57:44 +00:00
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>
); );