We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8147c commit 0b17344Copy full SHA for 0b17344
1 file changed
src/frontend/src/components/ActionsMenu.tsx
@@ -76,7 +76,7 @@ const ActionsMenu: React.FC<ActionsMenuProps> = ({ buttons, title = 'Actions' })
76
button.onClick();
77
}}
78
disabled={button.disabled}
79
- aria-disabled={button.disabled}
+ aria-disabled={button.disabled ? 'true' : undefined}
80
>
81
{button.icon && <ListItemIcon>{button.icon}</ListItemIcon>}
82
{button.title}
0 commit comments