Skip to content

Commit

Permalink
🐛 Allow text change when uploading source key for cred
Browse files Browse the repository at this point in the history
Signed-off-by: ibolton336 <ibolton@redhat.com>
  • Loading branch information
ibolton336 committed Nov 9, 2023
1 parent db83950 commit 7a723e8
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);

Check warning on line 580 in client/src/app/pages/identities/components/identity-form/identity-form.tsx

View check run for this annotation

Codecov / codecov/patch

client/src/app/pages/identities/components/identity-form/identity-form.tsx#L579-L580

Added lines #L579 - L580 were not covered by tests
}}
dropzoneProps={{
// accept: ".csv",
//TODO: key file extention types
Expand Down

0 comments on commit 7a723e8

Please sign in to comment.