Skip to content

Commit

Permalink
Merge pull request #12460 from debsmita1/pipeline-secret
Browse files Browse the repository at this point in the history
OCPBUGS-3228: fix broken pipeline secret
  • Loading branch information
openshift-merge-robot authored Jan 26, 2023
2 parents 341ac41 + da6f6e5 commit c563862
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const SecretForm: React.FC<FormikProps<SecretFormValues>> = ({
};

const onDataChanged = (value: string) => {
setStringData(_.merge(stringData, { [values.type]: value }));
setStringData({ ...stringData, [values.type]: value });
setValues(values.type);
};

Expand Down

0 comments on commit c563862

Please sign in to comment.