Skip to content

Commit dae6dd9

Browse files
authored
Merge pull request #4887 from nextcloud-libraries/fix/nc-actions--typo-in-aria-haspopup
fix(NcActions): typo in aria-haspopup
2 parents 1008221 + 10cbecc commit dae6dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/NcActions/NcActions.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,7 @@ export default {
13811381
slot: 'trigger',
13821382
ref: 'menuButton',
13831383
attrs: {
1384-
'aria-haspopup': this.isSemanticMenu ? null : 'menu',
1384+
'aria-haspopup': this.isSemanticMenu ? 'menu' : null,
13851385
'aria-label': this.menuName ? null : this.ariaLabel,
13861386
'aria-controls': this.opened ? this.randomId : null,
13871387
// Do not add aria-expanded="true" when it is closed

0 commit comments

Comments
 (0)