Problem/Motivation
https://validator.w3.org/ shows errors in the Main Navigation "aria-controls" attributes of the button controlling the sub-nav.
<button type="button" aria-expanded="false" class="menu__toggle" aria-controls="{{ aria_id }}">
Proposed resolution
Change aria-controls attribute to match the unique sub nav id
<button type="button" aria-expanded="false" class="menu__toggle" aria-controls="{{ 'sub-nav-' ~ aria_id }}">
Issue fork sector_theme-3413341
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
stewestLooks good, and tested
Comment #6
stewest