Skip to content

Commit

Permalink
Fix cell keys in the broker's config table
Browse files Browse the repository at this point in the history
Fixes 686
  • Loading branch information
riccardo-forina committed Apr 30, 2024
1 parent b322e1f commit 4501b63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export function ConfigTable({ config }: { config: NodeConfig }) {
);
case "value":
return (
<Td key={key} dataLabel={"Value"}>
<Td key={`${key}-value`} dataLabel={"Value"}>
{format(property)}
</Td>
);
Expand Down

0 comments on commit 4501b63

Please sign in to comment.