Skip to content

Commit

Permalink
fix: Add key for the mapped component
Browse files Browse the repository at this point in the history
Signed-off-by: Noble Mittal <[email protected]>
  • Loading branch information
beingnoble03 committed Aug 27, 2024
1 parent c507f4a commit ee97ac2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const WorkflowDetails = ({ clusterID, keyspace, name }: Props) => {
return rows.map((row) => {
const reverseWorkflow = row.reverseWorkflow;
return (
<tr>
<tr key={reverseWorkflow?.workflow?.name}>
<DataCell>{row.streamSummary ? row.streamSummary : '-'}</DataCell>
<DataCell>{row.workflowStatus ? row.workflowStatus.traffic_state : '-'}</DataCell>
<DataCell>
Expand Down

0 comments on commit ee97ac2

Please sign in to comment.