Skip to content

Commit e2298a3

Browse files
committed
✨(frontend) add missing aria-label to more options button on sub-docs
improves accessibility by making the options button screen reader friendly Signed-off-by: Cyril <[email protected]>
1 parent 278eb23 commit e2298a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to
1010

1111
- ♿(frontend) improve accessibility:
1212
- ♿ add missing aria-label to add sub-doc button for accessib… #1480
13+
- ♿ add missing aria-label to more options button on sub-docs #1481
1314

1415
## [3.8.0] - 2025-10-14
1516

src/frontend/apps/impress/src/features/docs/doc-tree/components/DocTreeItemActions.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ export const DocTreeItemActions = ({
152152
options={options}
153153
isOpen={isOpen}
154154
onOpenChange={onOpenChange}
155-
aria-label={t('Open document actions menu')}
156155
>
157156
<Icon
158157
onClick={(e) => {
@@ -164,7 +163,7 @@ export const DocTreeItemActions = ({
164163
variant="filled"
165164
$theme="primary"
166165
$variation="600"
167-
aria-hidden="true"
166+
aria-label={t('More options')}
168167
/>
169168
</DropdownMenu>
170169
{doc.abilities.children_create && (

0 commit comments

Comments
 (0)