We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47fce8a + 922f1e2 commit 1575034Copy full SHA for 1575034
src/common-components/FormGroup.jsx
@@ -26,6 +26,7 @@ const FormGroup = (props) => {
26
as={props.as}
27
readOnly={props.readOnly}
28
type={props.type}
29
+ aria-invalid={props.errorMessage !== ''}
30
className="form-field"
31
autoComplete={props.autoComplete}
32
name={props.name}
src/common-components/PasswordField.jsx
@@ -63,6 +63,7 @@ const PasswordField = (props) => {
63
type={isPasswordHidden ? 'password' : 'text'}
64
65
value={props.value}
66
67
onFocus={handleFocus}
68
onBlur={handleBlur}
69
onChange={props.handleChange}
0 commit comments