We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a44683 commit 94e96faCopy full SHA for 94e96fa
site/.eslintrc.yaml
@@ -115,6 +115,7 @@ rules:
115
- error
116
- children: ignore
117
# https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html#eslint
118
+ react/jsx-key: error
119
react/jsx-uses-react: "off"
120
react/react-in-jsx-scope: "off"
121
settings:
site/src/components/TemplateResourcesTable/TemplateResourcesTable.tsx
@@ -55,7 +55,7 @@ export const TemplateResourcesTable: FC<React.PropsWithChildren<TemplateResource
55
// If there is no agent, just display the resource name
56
if (!agent) {
57
return (
58
- <TableRow>
+ <TableRow key={resource.id}>
59
<TableCell className={styles.resourceNameCell}>
60
<AvatarData
61
title={resource.name}
0 commit comments