Skip to content

Commit eaa789b

Browse files
authored
fix(healthcheck): show groups ids in separate rows (#2423)
1 parent 0c89baa commit eaa789b

File tree

1 file changed

+1
-1
lines changed
  • src/containers/Tenant/Healthcheck/components/HealthcheckIssueDetails

1 file changed

+1
-1
lines changed

src/containers/Tenant/Healthcheck/components/HealthcheckIssueDetails/utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function IdList({ids, renderItem}: IdListProps) {
5959
return (
6060
<Flex direction="column" gap={1}>
6161
{ids.map((id) => (
62-
<React.Fragment key={id}>{renderItem ? renderItem(id) : id}</React.Fragment>
62+
<div key={id}>{renderItem ? renderItem(id) : id}</div>
6363
))}
6464
</Flex>
6565
);

0 commit comments

Comments
 (0)