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 0e35939 commit 66f9638Copy full SHA for 66f9638
packages/@react-spectrum/menu/intl/en-US.json
@@ -1,4 +1,4 @@
1
{
2
"moreActions": "More actions",
3
- "unavailable": "Expand for details"
+ "unavailable": "Unavailable, expand for details"
4
}
packages/@react-spectrum/menu/src/MenuItem.tsx
@@ -96,9 +96,6 @@ export function MenuItem<T>(props: MenuItemProps<T>) {
96
endProps.id = endId;
97
menuItemProps['aria-describedby'] = [menuItemProps['aria-describedby'], endId].filter(Boolean).join(' ');
98
99
- if (isUnavailable) {
100
- menuItemProps['aria-disabled'] = 'true';
101
- }
102
103
let contents = typeof rendered === 'string'
104
? <Text>{rendered}</Text>
0 commit comments