Fix characters passing through password icon (#622)

Fix password input style
This commit is contained in:
Lucas Oliveira 2023-07-07 14:43:01 -03:00 committed by GitHub
commit 16ed5f67aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,7 +45,7 @@ export default function InputComponent({
if (disableCopyPaste) setDisableCopyPaste(false);
}}
className={classNames(
" pr-12 ",
" pr-9 ",
disabled ? " input-disable " : "",
password && !pwdVisible && myValue !== "" ? "password" : "",
editNode ? " input-edit-node " : " input-primary ",