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
Google Lighthouse gave an Accessibility score of 89 for the Mayan homepage. One of the issues reported is that the ARIA IDs are not unique in the page, which can cause assistive technologies to only announce the first element of an ID instead of all elements.
The text was updated successfully, but these errors were encountered:
FixesCMU-313#3.
In the tab panel, multiple elements were using the same ARIA ID. This
occurs because when elements of the panel get generated, they reuse the
same statically-defined ID. To fix this, replace the ID used with a
dynamically generated one. In this case, use the forloop counter to get
a unique number for each element in the panel, which also reflects the
naming behavior of some other elements in the side panel.
Google Lighthouse gave an Accessibility score of 89 for the Mayan homepage. One of the issues reported is that the ARIA IDs are not unique in the page, which can cause assistive technologies to only announce the first element of an ID instead of all elements.
The text was updated successfully, but these errors were encountered: