Skip to content

Commit a7d189d

Browse files
committed
add key to runtimeitem
1 parent fae487e commit a7d189d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ui/src/components/repo/sidebar.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,11 @@ function SidebarRuntime() {
291291
{[["localhost:14321", ""]]
292292
.concat(repoConfig?.runtimes || [])
293293
.map(([address, mqAddress]) => (
294-
<RuntimeItem socketAddress={address} mqAddress={mqAddress} />
294+
<RuntimeItem
295+
socketAddress={address}
296+
mqAddress={mqAddress}
297+
key={address + mqAddress}
298+
/>
295299
))}
296300
</Box>
297301
<Box>

0 commit comments

Comments
 (0)