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

Commit

Permalink
ISTE-19: Fixed minlength issue ( #774 )
Browse files Browse the repository at this point in the history
ISTE-19: Fixed minlength issue
  • Loading branch information
anilsingha-eGov authored Apr 22, 2024
2 parents ec5c4f1 + c6e0ea2 commit befcab5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Password = (props) => {
ref={props.inputRef}
value={props.value}
style={{ ...props.style }}
minLength={props.minlength || 10}
minLength={props.minlength}
maxLength={props.maxlength || 10}
max={props.max}
min={props.min}
Expand Down

0 comments on commit befcab5

Please sign in to comment.