Skip to content

Commit

Permalink
fix(VTooltip): don't add role:button to activator (#12428)
Browse files Browse the repository at this point in the history
fixes #12360
  • Loading branch information
ricardovanlaarhoven authored Nov 24, 2020
1 parent 107bd32 commit ec15822
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/vuetify/src/components/VTooltip/VTooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,12 @@ export default mixins(Colorable, Delayable, Dependent, Detachable, Menuable, Tog

return listeners
},
genActivatorAttributes () {
return {
'aria-haspopup': true,
'aria-expanded': String(this.isActive),
}
},
genTransition () {
const content = this.genContent()

Expand Down

0 comments on commit ec15822

Please sign in to comment.