From 1c40ed484c31def71b0a587f8e39cd6101762de8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20Th=C3=A9baud?= Date: Tue, 3 Sep 2024 06:48:35 +0200 Subject: [PATCH] fix(VDialog): remove `aria-expanded` from activator (#20414) --- packages/vuetify/src/components/VDialog/VDialog.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/vuetify/src/components/VDialog/VDialog.tsx b/packages/vuetify/src/components/VDialog/VDialog.tsx index 6391b95df15..10063444860 100644 --- a/packages/vuetify/src/components/VDialog/VDialog.tsx +++ b/packages/vuetify/src/components/VDialog/VDialog.tsx @@ -111,7 +111,6 @@ export const VDialog = genericComponent()({ const overlayProps = VOverlay.filterProps(props) const activatorProps = mergeProps({ 'aria-haspopup': 'dialog', - 'aria-expanded': String(isActive.value), }, props.activatorProps) const contentProps = mergeProps({ tabindex: -1,