Skip to content

Commit

Permalink
fix(core): provide key for repeating param JSX elements (#7136)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed Jun 21, 2019
1 parent 454c536 commit dae73da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ export function PipelineParametersExecutionDetails(props: IExecutionDetailsSecti
{Object.keys(parameters)
.sort((a, b) => a.toLowerCase().localeCompare(b.toLowerCase()))
.map(key => (
<>
<React.Fragment key={key}>
<dt>{key}</dt>
<dd>{parameters[key]}</dd>
</>
</React.Fragment>
))}
</dl>
</div>
Expand Down

0 comments on commit dae73da

Please sign in to comment.