Skip to content

Commit

Permalink
fix(core/pipeline): use react keys in preconfigured job config compon…
Browse files Browse the repository at this point in the history
…ent loop
  • Loading branch information
christopherthielen authored and mergify[bot] committed Mar 6, 2020
1 parent f6c3467 commit 25da571
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class PreconfiguredJobStageConfig extends React.Component<IStageConfigPro
return (
<div className="form-horizontal">
{configuration.parameters.map((parameter: IPreconfiguredJobParameter) => (
<StageConfigField label={parameter.label}>
<StageConfigField key={parameter.name} label={parameter.label}>
<input
type="text"
className="form-control input-sm"
Expand Down

0 comments on commit 25da571

Please sign in to comment.