mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-09 23:54:09 -06:00
Fixed the issue where password field is showing as plain text.
This commit is contained in:
parent
7aa213a5ce
commit
d27b4831d6
@ -339,7 +339,7 @@ export const InputText = forwardRef(({
|
||||
onChange={onChangeFinal}
|
||||
{...controlProps}
|
||||
{...props}
|
||||
{...(['numeric', 'int'].indexOf(type) > -1 ? {type: 'tel'} : {})}
|
||||
{...(['numeric', 'int'].indexOf(type) > -1 ? {type: 'tel'} : {type: type})}
|
||||
/>
|
||||
);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user