Skip to content

Commit 9a89bf4

Browse files
committed
fix: add missing key to resource row
1 parent a2429a7 commit 9a89bf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/Resources/Resources.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const Resources: React.FC<ResourcesProps> = ({
6666
}
6767
if (!agent) {
6868
return (
69-
<TableRow>
69+
<TableRow key={`${resource.id}-${agentIndex}`}>
7070
<TableCell className={styles.resourceNameCell}>
7171
{resource.name}
7272
<span className={styles.resourceType}>{resource.type}</span>

0 commit comments

Comments
 (0)