mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
fix: deselect button not shown in m2m file interface for non-admin users (#4913)
This commit is contained in:
@@ -25,9 +25,9 @@
|
||||
/>
|
||||
</template>
|
||||
|
||||
<template #item-append="{ item }" v-if="!disabled">
|
||||
<v-icon name="save_alt" v-tooltip="$t('download')" class="download" @click.stop="downloadItem(item)" />
|
||||
<v-icon name="close" v-tooltip="$t('deselect')" class="deselect" @click.stop="deleteItem(item)" />
|
||||
<template #item-append="{ item }">
|
||||
<v-icon name="save_alt" v-show="!disabled" v-tooltip="$t('download')" class="download" @click.stop="downloadItem(item)" />
|
||||
<v-icon name="close" v-show="!disabled" v-tooltip="$t('deselect')" class="deselect" @click.stop="deleteItem(item)" />
|
||||
</template>
|
||||
</v-table>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user