You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several accessibility issues were identified during the review of PR #35 (new dashboard UI) that should be addressed holistically in a dedicated PR.
Known Issues
Sortable table headers in src/app/_stats/stats-table-shell.tsx (lines 55–75): Sort triggers use a clickable <div> instead of a <button>, making them unreachable by keyboard users. Additionally, aria-sort is missing on header cells, so screen readers cannot announce sort direction.
Additional accessibility issues across the new dashboard components (stat cards, charts, badges, modals) should be audited and addressed as part of this effort.
Suggested Fixes
Replace clickable <div> elements used as interactive controls with semantic <button> elements.
Audit all new UI components introduced in PR Propose for the new dashboard UI #35 for keyboard focusability, focus management, ARIA roles, and color contrast.
Overview
Several accessibility issues were identified during the review of PR #35 (new dashboard UI) that should be addressed holistically in a dedicated PR.
Known Issues
src/app/_stats/stats-table-shell.tsx(lines 55–75): Sort triggers use a clickable<div>instead of a<button>, making them unreachable by keyboard users. Additionally,aria-sortis missing on header cells, so screen readers cannot announce sort direction.Suggested Fixes
<div>elements used as interactive controls with semantic<button>elements.aria-sort(ascending/descending/none) to sortable<th>cells.References