Skip to content

Commit

Permalink
🐛 Address upload via text bug for maven cred settings file (#1477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 authored Oct 16, 2023
1 parent 7024f49 commit a135bd8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,9 @@ export const IdentityForm: React.FC<IdentityFormProps> = ({
onDataChange={(_, value: string) => {
onChange(value);
}}
onTextChange={(_, value: string) => {
onChange(value);
}}
dropzoneProps={{
accept: { "text/xml": [".xml"] },
onDropRejected: () => setIsSettingsFileRejected(true),
Expand Down

0 comments on commit a135bd8

Please sign in to comment.