Do not display tooltip when item description exists (#2628)

This commit is contained in:
David Tsay 2020-09-14 12:05:22 -07:00 committed by GitHub
parent 14114781fc
commit b4c44c6d49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,9 @@
v-for="(item, index) in sortedItems" v-for="(item, index) in sortedItems"
:key="index" :key="index"
:class="item.class" :class="item.class"
:title="item.title" :aria-label="item.name"
role="button"
tabindex="0"
@mouseover="showItemDescription(item)" @mouseover="showItemDescription(item)"
@click="create(item)" @click="create(item)"
> >