From 01167fc185db9bbb45b3a4086aff98008a76af2c Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Tue, 3 Oct 2023 15:03:24 -0700 Subject: [PATCH] fix(select): use correct aria-haspopup value (#28265) --- 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 639d8e22a3..a508709400 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}