mirror of
https://github.com/directus/directus.git
synced 2026-01-30 02:07:57 -05:00
Allow batch edit for 1 or more items (#11318)
This commit is contained in:
@@ -159,7 +159,7 @@
|
||||
</v-dialog>
|
||||
|
||||
<v-button
|
||||
v-if="selection.length > 1"
|
||||
v-if="selection.length > 0"
|
||||
v-tooltip.bottom="batchEditAllowed ? t('edit') : t('not_allowed')"
|
||||
rounded
|
||||
icon
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
</v-dialog>
|
||||
|
||||
<v-button
|
||||
v-if="selection.length > 1"
|
||||
v-if="selection.length > 0"
|
||||
v-tooltip.bottom="batchEditAllowed ? t('edit') : t('not_allowed')"
|
||||
rounded
|
||||
icon
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
</v-dialog>
|
||||
|
||||
<v-button
|
||||
v-if="selection.length > 1"
|
||||
v-if="selection.length > 0"
|
||||
v-tooltip.bottom="t('edit')"
|
||||
rounded
|
||||
icon
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
</v-dialog>
|
||||
|
||||
<v-button
|
||||
v-if="selection.length > 1"
|
||||
v-if="selection.length > 0"
|
||||
v-tooltip.bottom="batchEditAllowed ? t('edit') : t('not_allowed')"
|
||||
rounded
|
||||
icon
|
||||
|
||||
Reference in New Issue
Block a user