Use batch mode in extensions (#18624)

* Use batch mode in extensions

* timio23 signed agreement

* addressed lint warnings

* Create rude-bees-exercise.md
This commit is contained in:
Tim Butterfield
2023-05-16 17:30:56 +01:00
committed by GitHub
parent 40129c9e2c
commit 97d5ffd9b4
3 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"@directus/app": patch
---
Allow batchMode and batchActive to be used in interface extensions

View File

@@ -15,6 +15,8 @@
:disabled="disabled"
:loading="loading"
:value="value"
:batch-mode="batchMode"
:batch-active="batchActive"
:width="(field.meta && field.meta.width) || 'full'"
:type="field.type"
:collection="field.collection"

View File

@@ -35,3 +35,4 @@
- lucasdon
- ChuckMoe
- groksrc
- timio23