Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Added password not taking props
Browse files Browse the repository at this point in the history
  • Loading branch information
anilsingha-eGov committed Apr 19, 2024
1 parent 52d44f4 commit b24c6ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const Password = (props) => {
ref={props.inputRef}
value={props.value}
style={{ ...props.style }}
minLength={props.minlength}
maxLength={props.maxlength}
minLength={props.minlength || 10}
maxLength={props.maxlength || 10}
max={props.max}
min={props.min}
readOnly={props.disable}
Expand Down

0 comments on commit b24c6ae

Please sign in to comment.