Skip to content

Commit

Permalink
Merge pull request #4887 from nextcloud-libraries/fix/nc-actions--typ…
Browse files Browse the repository at this point in the history
…o-in-aria-haspopup

fix(NcActions): typo in aria-haspopup
  • Loading branch information
susnux committed Nov 30, 2023
2 parents 1008221 + 10cbecc commit dae6dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NcActions/NcActions.vue
Expand Up @@ -1381,7 +1381,7 @@ export default {
slot: 'trigger',
ref: 'menuButton',
attrs: {
'aria-haspopup': this.isSemanticMenu ? null : 'menu',
'aria-haspopup': this.isSemanticMenu ? 'menu' : null,
'aria-label': this.menuName ? null : this.ariaLabel,
'aria-controls': this.opened ? this.randomId : null,
// Do not add aria-expanded="true" when it is closed
Expand Down

0 comments on commit dae6dd9

Please sign in to comment.