From ce993d9b5de0bb841f3863182754aa4acbce8eef Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Fri, 29 Sep 2023 16:45:04 -0700 Subject: [PATCH] fix(select): use correct aria-haspopup value --- core/src/components/select/select.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/select/select.tsx b/core/src/components/select/select.tsx index 639d8e22a36..a5087094007 100644 --- a/core/src/components/select/select.tsx +++ b/core/src/components/select/select.tsx @@ -1041,7 +1041,7 @@ Developers can use the "legacy" property to continue using the legacy form marku disabled={disabled} id={inputId} aria-label={this.ariaLabel} - aria-haspopup="listbox" + aria-haspopup="dialog" aria-expanded={`${isExpanded}`} onFocus={this.onFocus} onBlur={this.onBlur}