From 5b7506c20a4442eb5f651f87b0930faadd890938 Mon Sep 17 00:00:00 2001 From: BatLeDev Date: Thu, 13 Aug 2026 17:43:59 +0200 Subject: [PATCH 1/8] fix(portal): name the preview dialogs and their close button The dialogs opened from a dataset or a visualisation page (download, field description, embed code, notifications) had no accessible name: neither aria-label nor aria-labelledby, and their visible title was not linked. Their close button had no label at all. A screen reader announced "dialog" then "button", nothing more. The dialog now takes its name from the title it already receives, and the close button gets one. RGAA 7.1. --- portal/app/components/layout/layout-preview.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/portal/app/components/layout/layout-preview.vue b/portal/app/components/layout/layout-preview.vue index a5210c20..df8d64ad 100644 --- a/portal/app/components/layout/layout-preview.vue +++ b/portal/app/components/layout/layout-preview.vue @@ -1,8 +1,10 @@