fix missing key issue in badge section
This commit is contained in:
parent
7f72842d73
commit
ec2ecbe8f6
|
|
@ -59,7 +59,10 @@ export function PageDetail({
|
|||
<Space />
|
||||
{detail}
|
||||
<Group justify="right" gap="xs" wrap="nowrap">
|
||||
{badges}
|
||||
{badges &&
|
||||
badges.map((badge, idx) => (
|
||||
<Fragment key={idx}>{badge}</Fragment>
|
||||
))}
|
||||
</Group>
|
||||
<Space />
|
||||
{actions && (
|
||||
|
|
|
|||
Loading…
Reference in New Issue