Skip to content

Commit

Permalink
🐛 Allow text change for private key upload (#1533)
Browse files Browse the repository at this point in the history
- Resolves [[Regression][Credentials] File upload component of source
private key is not editable](https://issues.redhat.com/browse/MTA-1545)

Closes #1528

Signed-off-by: ibolton336 <ibolton@redhat.com>
  • Loading branch information
ibolton336 authored Nov 10, 2023
1 parent 35eb2f1 commit 3c5080e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,9 @@ export const IdentityForm: React.FC<IdentityFormProps> = ({
onDataChange={(_, value: string) => {
onChange(value);
}}
onTextChange={(_, value: string) => {
onChange(value);
}}
dropzoneProps={{
// accept: ".csv",
//TODO: key file extention types
Expand Down

0 comments on commit 3c5080e

Please sign in to comment.