You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
I'm checking my code generated via this library against WCAG 2.0 standards using Axe plugin on Chrome
Axe raise a critical alert on the Description of an input using FormGroupText
<FormGroupTextas="input"status={validateField(formik.touched.WorksApproval,formik.errors.WorksApproval,formik.values.WorksApproval)}htmlId="WorksApproval"name="WorksApproval"label="Works Approval"helper="Water supply work approval number (Format: 00AA000000)"value={formik.values.WorksApproval}statusText={formik.errors.WorksApproval ? formik.errors.WorksApproval : formik.touched.WorksApproval ? 'OK' : ''}onBlur={formik.handleBlur}onChange={formik.handleChange}disabled={loading}/>
To solve this, this span is supposed to have a unique ID :
I'm checking my code generated via this library against WCAG 2.0 standards using Axe plugin on Chrome
Axe raise a critical alert on the Description of an input using
FormGroupText
To solve this, this span is supposed to have a unique ID :
nsw-design-system-react/src/component/forms/group-elements/index.js
Line 21 in 87657c4
by probably re-using the same logic of the parent
<span>
The text was updated successfully, but these errors were encountered: