From 9e4346bb44901e8eed17224e95ef257ac5c81cf1 Mon Sep 17 00:00:00 2001 From: Amy Marsh <19311766+amymarsh4work@users.noreply.github.com> Date: Wed, 12 Jun 2019 14:34:53 -0400 Subject: [PATCH] fix(menu): change ARIA role from complementary to navigation (#18330) fixes #18318 --- core/src/components/menu/menu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/menu/menu.tsx b/core/src/components/menu/menu.tsx index 0af3c504ce..8c559f995a 100644 --- a/core/src/components/menu/menu.tsx +++ b/core/src/components/menu/menu.tsx @@ -517,7 +517,7 @@ export class Menu implements ComponentInterface, MenuI { hostData() { const { isEndSide, type, disabled, isPaneVisible } = this; return { - role: 'complementary', + role: 'navigation', class: { [`${this.mode}`]: true, [`menu-type-${type}`]: true,