vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

fix(VTooltip): Add aria-label attribute to Vtooltip

Open mueller-jens opened this issue 7 months ago • 1 comments

Description

fixed #21242

added aria-label attribute to v-tooltip

Markup:

<template>
  <v-app>
    <v-container>
      <v-tooltip text="Tooltip">
        <template v-slot:activator="{ props }">
          <v-btn v-bind="props">Hover Over Me</v-btn>
        </template>
      </v-tooltip>
    </v-container>
  </v-app>
</template>

axe output before change:

image

after the change:

image

mueller-jens avatar Jun 10 '25 18:06 mueller-jens

Is it only Orca or does all screen readers get confused and read first tooltip instead of second? example. It is not related to the changes, just curious if anyone noticed the bug.

J-Sek avatar Jul 24 '25 01:07 J-Sek