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
Describe the bug
When using a nested form in Formio.js, two div elements with the same id are generated. This causes accessibility verification issues, as duplicate id values do not comply with WCAG standards and can interfere with screen readers and validation tools.
Expected behavior
The form should generate a single container with a unique id, avoiding duplication to ensure accessibility compliance.
Screenshots
Additional context
This issue can cause errors in automated accessibility tests and impact the usability of the form for assistive technology users. A possible solution is to remove the duplicate id or ensure unique identifiers for each div.
The text was updated successfully, but these errors were encountered:
@sabato-galasso Thank you for reporting this issue. I can reproduce it and have logged a ticket for the backlog. We are always willing to review any contributions from the open-source community to resolve this issue.
Describe the bug
When using a nested form in Formio.js, two
div
elements with the sameid
are generated. This causes accessibility verification issues, as duplicateid
values do not comply with WCAG standards and can interfere with screen readers and validation tools.Version/Branch
Formio.js version:
"@formio/js": "^5.0.1"
To Reproduce
div
elements have the sameid
.Expected behavior
The form should generate a single container with a unique
id
, avoiding duplication to ensure accessibility compliance.Screenshots
Additional context
This issue can cause errors in automated accessibility tests and impact the usability of the form for assistive technology users. A possible solution is to remove the duplicate id or ensure unique identifiers for each
div
.The text was updated successfully, but these errors were encountered: