a11y: Apply workspace Q&A toggle missing aria-expanded #99

Closed
opened 2026-04-14 15:44:29 -07:00 by pyr0ball · 0 comments
Owner

The APPLICATION Q&A section toggle button in ApplyWorkspace.vue does not set aria-expanded. Screen readers cannot tell users whether the section is open or closed.

Fails WCAG 4.1.2 (Name, Role, Value).

Fix: Find the Q&A toggle button and add :aria-expanded="qaExpanded" (matching whatever reactive ref controls open state).

<button :aria-expanded="qaOpen" @click="qaOpen = !qaOpen">
  Application Q&A {{ qaOpen ? ▲ : ▼ }}
</button>
The APPLICATION Q&A section toggle button in `ApplyWorkspace.vue` does not set `aria-expanded`. Screen readers cannot tell users whether the section is open or closed. Fails WCAG 4.1.2 (Name, Role, Value). **Fix:** Find the Q&A toggle button and add `:aria-expanded="qaExpanded"` (matching whatever reactive ref controls open state). ```html <button :aria-expanded="qaOpen" @click="qaOpen = !qaOpen"> Application Q&A {{ qaOpen ? ▲ : ▼ }} </button> ```
pyr0ball added the
bug
frontend
a11y
labels 2026-04-14 15:44:29 -07:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Circuit-Forge/peregrine#99
No description provided.