Skip to content

Commit 0b17344

Browse files
committed
#955 test fix
1 parent 9c8147c commit 0b17344

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/frontend/src/components/ActionsMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const ActionsMenu: React.FC<ActionsMenuProps> = ({ buttons, title = 'Actions' })
7676
button.onClick();
7777
}}
7878
disabled={button.disabled}
79-
aria-disabled={button.disabled}
79+
aria-disabled={button.disabled ? 'true' : undefined}
8080
>
8181
{button.icon && <ListItemIcon>{button.icon}</ListItemIcon>}
8282
{button.title}

0 commit comments

Comments
 (0)