Skip to content

Commit 863e67a

Browse files
jerabekjirihimdel
authored andcommitted
Fix proxy password in remote repositories (ansible#1587)
Issue: AAH-1253 (cherry picked from commit 883b5d7) Issue: AAH-1483
1 parent 6ce1cd6 commit 863e67a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES/1253.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Change proxy password from text type to password type

src/components/repositories/remote-form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ export class RemoteForm extends React.Component<IProps, IState> {
372372
isRequired={requiredFields.includes('proxy_password')}
373373
isDisabled={disabledFields.includes('proxy_password')}
374374
id='proxy_password'
375-
type='text'
375+
type='password'
376376
value={remote.proxy_password || ''}
377377
onChange={value => this.updateRemote(value, 'proxy_password')}
378378
/>

0 commit comments

Comments
 (0)