Describe the bug
A form label is incorrectly using the for attribute, triggering a browser accessibility warning:
"Incorrect use of <label for=FORM_ELEMENT>"
From inspection, the for attribute value (13_array) does not correctly reference a valid or matching form control id, or the associated input element is missing/mismatched.
To Reproduce
Steps to reproduce the behavior:
- Open the form page
- Inspect the "Other Titles" field in DevTools
- Locate the element
- Observe the warning in the DevTools console
Expected behavior
Each element should correctly reference a corresponding form control via a matching id, ensuring proper accessibility and no warnings.
Describe the bug
A form label is incorrectly using the for attribute, triggering a browser accessibility warning:
"Incorrect use of <label for=FORM_ELEMENT>"From inspection, the for attribute value (13_array) does not correctly reference a valid or matching form control id, or the associated input element is missing/mismatched.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Each element should correctly reference a corresponding form control via a matching id, ensuring proper accessibility and no warnings.