From 806d162b8c493c2ed40ce1fbf43c1cb29df8e7a4 Mon Sep 17 00:00:00 2001 From: TJ Egan Date: Tue, 21 Jan 2020 10:34:25 -0800 Subject: [PATCH] fix(listbox): add aria-multiselectable attribute --- packages/react/src/components/ListBox/ListBoxMenu.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/src/components/ListBox/ListBoxMenu.js b/packages/react/src/components/ListBox/ListBoxMenu.js index 8a499b7eab40..9cf637f11ec7 100644 --- a/packages/react/src/components/ListBox/ListBoxMenu.js +++ b/packages/react/src/components/ListBox/ListBoxMenu.js @@ -23,6 +23,7 @@ const ListBoxMenu = ({ children, id, ...rest }) => ( id={`${id}__menu`} className={`${prefix}--list-box__menu`} role="listbox" + aria-multiselectable="true" {...rest}> {children}