mirror of
https://github.com/directus/directus.git
synced 2026-02-01 14:04:57 -05:00
Add tooltips to collections browse
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
|
||||
<v-dialog v-model="confirmDelete" v-if="selection.length > 0">
|
||||
<template #activator="{ on }">
|
||||
<v-button rounded icon class="action-delete" @click="on">
|
||||
<v-button rounded icon class="action-delete" @click="on" v-tooltip.bottom="$t('delete')">
|
||||
<v-icon name="delete" />
|
||||
</v-button>
|
||||
</template>
|
||||
@@ -67,11 +67,11 @@
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
|
||||
<v-button rounded icon class="action-batch" v-if="selection.length > 1" :to="batchLink">
|
||||
<v-button rounded icon class="action-batch" v-if="selection.length > 1" :to="batchLink" v-tooltip.bottom="$t('edit')">
|
||||
<v-icon name="edit" />
|
||||
</v-button>
|
||||
|
||||
<v-button rounded icon :to="addNewLink">
|
||||
<v-button rounded icon :to="addNewLink" v-tooltip.bottom="$t('add_new')">
|
||||
<v-icon name="add" />
|
||||
</v-button>
|
||||
</template>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
:class="{ active, 'has-content': !!value }"
|
||||
v-click-outside="disable"
|
||||
@click="active = true"
|
||||
v-tooltip.bottom="active ? null : $t('search')"
|
||||
>
|
||||
<v-icon name="search" />
|
||||
<input ref="input" :value="value" @input="emitValue" />
|
||||
|
||||
Reference in New Issue
Block a user