fix(studio): drop aria-modal from the non-modal shortcuts popup

The panel does not trap focus and leaves the rest of the editor operable,
so aria-modal would tell assistive tech the whole app is inert while it is
open. role=dialog plus aria-controls and Escape is the correct non-modal
disclosure shape.
This commit is contained in:
Miguel Angel Simon Sierra
2026-07-28 18:02:09 +02:00
parent aa2811642f
commit 7f0cadcbb1
2 changed files with 6 additions and 2 deletions
@@ -150,7 +150,9 @@ describe("ShortcutsPanel", () => {
expect(panelId).not.toBeNull();
expect(panel?.getAttribute("role")).toBe("dialog");
expect(panel?.getAttribute("aria-modal")).toBe("true");
// Non-modal on purpose: focus is not trapped and the editor behind stays
// operable, so aria-modal would lie to assistive tech about inertness.
expect(panel?.getAttribute("aria-modal")).toBeNull();
expect(panel?.id).toBe(panelId);
});
});