Where: navigation bar on the dashboard and create/edit page
What: the navigation links don’t have an accessible name. The accessible name is taken from the contents; since there isn’t any content this doesn’t indicate the link’s purpose.
Recommendations: Add a more descriptive accessible name through either a visually hidden<span> or aria-label attribute on the link.
Where: navigation bar on the dashboard and create/edit page
What: the navigation links don’t have an accessible name. The accessible name is taken from the contents; since there isn’t any content this doesn’t indicate the link’s purpose.
Recommendations: Add a more descriptive accessible name through either a [visually hidden](https://www.a11yproject.com/posts/how-to-hide-content/) `<span>` or `aria-label` attribute on the link.
![navigation bar links](/attachments/910d227e-a411-44cf-8215-808fe894c764)
Where: navigation bar on the dashboard and create/edit page
What: the navigation links don’t have an accessible name. The accessible name is taken from the contents; since there isn’t any content this doesn’t indicate the link’s purpose.
Recommendations: Add a more descriptive accessible name through either a visually hidden
<span>
oraria-label
attribute on the link.Related to #107, might be able to solve them together.
So all of the navigation links have titles. Is it better to use the
aria-label
instead of title for better compatibility?