A11y: Modal backdrop missing keyboard event handler and ARIA role #23

Closed
opened 2026-02-19 03:09:34 +00:00 by santhoshj · 0 comments
Owner

Problem

The modal backdrop in team-members page has a11y issues:

  1. Click event without keyboard event handler
  2. Missing ARIA role on div with click handler

Location

  • frontend/src/routes/team-members/+page.svelte:363

Warnings

a11y_click_events_have_key_events
a11y_no_static_element_interactions

Solution

Add onkeydown handler and role='button' to modal-backdrop div

## Problem The modal backdrop in team-members page has a11y issues: 1. Click event without keyboard event handler 2. Missing ARIA role on div with click handler ## Location - frontend/src/routes/team-members/+page.svelte:363 ## Warnings ``` a11y_click_events_have_key_events a11y_no_static_element_interactions ``` ## Solution Add onkeydown handler and role='button' to modal-backdrop div
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: santhoshj/headroom#23