From 40ff55854034173764184e4f30ccc8e47de9d378 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 12 Apr 2026 14:14:57 +0200 Subject: [PATCH] feat(a11y): add aria-live region to toast notifications Adds role='status' and aria-live='polite' to the notification container so screen readers announce status messages. Fixes WCAG 4.1.3 (Status Messages). --- frontend/src/components/misc/Notification.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/misc/Notification.vue b/frontend/src/components/misc/Notification.vue index b4e332a3d..3dc8bac52 100644 --- a/frontend/src/components/misc/Notification.vue +++ b/frontend/src/components/misc/Notification.vue @@ -4,6 +4,8 @@ :max="2" :ignore-duplicates="true" class="global-notification" + role="status" + aria-live="polite" >