From c6e0ea2954892b7410c5048e89bcdbf02c81ae0c Mon Sep 17 00:00:00 2001 From: Anil Singha <99383116+anilsingha-eGov@users.noreply.github.com> Date: Mon, 22 Apr 2024 21:36:05 +0530 Subject: [PATCH] ISTE-19: Foxed minlentgh issue --- .../packages/react-components/src/atoms/Password.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/micro-ui/web/micro-ui-internals/packages/react-components/src/atoms/Password.js b/frontend/micro-ui/web/micro-ui-internals/packages/react-components/src/atoms/Password.js index f8d9234cc..23517fb30 100644 --- a/frontend/micro-ui/web/micro-ui-internals/packages/react-components/src/atoms/Password.js +++ b/frontend/micro-ui/web/micro-ui-internals/packages/react-components/src/atoms/Password.js @@ -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}