-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(feature-section-card-link): remove incorrect role #8197
fix(feature-section-card-link): remove incorrect role #8197
Conversation
Deploy preview created for package Built with commit: 156ffa310d4471f483c09695d49bfa3d0c635b33 |
Deploy preview created for package Built with commit: 156ffa310d4471f483c09695d49bfa3d0c635b33 |
Deploy preview created for package Built with commit: 156ffa310d4471f483c09695d49bfa3d0c635b33 |
Deploy preview created for package Built with commit: 156ffa310d4471f483c09695d49bfa3d0c635b33 |
Deploy preview created for package Built with commit: 156ffa310d4471f483c09695d49bfa3d0c635b33 |
@jkaeser Thanks for opening this PR! Can you run |
Deploy preview created for package Built with commit: 156ffa310d4471f483c09695d49bfa3d0c635b33 |
Deploy preview created for package Built with commit: 156ffa310d4471f483c09695d49bfa3d0c635b33 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Related Ticket(s)
Resolves #8010
Description
The
DDSLinkList
andDDSFeatureSectionCardLink
components had incorrectrole
attributes, which caused a number of a11y errors to be reported when running theyarn lint:a11y
script. Fixing the roles on these two components resolves any errors related to incorrect usages of "listitem" roles.Changelog
Changed
role="list"
toDDSLinkList
componentrole="listitem"
fromDDSFeatureSectionCardLink
component