mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-10 05:40:55 +00:00
fix missing key issue in badge section
This commit is contained in:
@@ -59,7 +59,10 @@ export function PageDetail({
|
|||||||
<Space />
|
<Space />
|
||||||
{detail}
|
{detail}
|
||||||
<Group justify="right" gap="xs" wrap="nowrap">
|
<Group justify="right" gap="xs" wrap="nowrap">
|
||||||
{badges}
|
{badges &&
|
||||||
|
badges.map((badge, idx) => (
|
||||||
|
<Fragment key={idx}>{badge}</Fragment>
|
||||||
|
))}
|
||||||
</Group>
|
</Group>
|
||||||
<Space />
|
<Space />
|
||||||
{actions && (
|
{actions && (
|
||||||
|
Reference in New Issue
Block a user