mirror of
https://github.com/directus/directus.git
synced 2026-01-29 23:47:57 -05:00
fix unsetting fields in batch mode (#12880)
This commit is contained in:
@@ -334,7 +334,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function unsetValue(field: Field) {
|
||||
if (isDisabled(field)) return;
|
||||
if (!props.batchMode && isDisabled(field)) return;
|
||||
|
||||
if (field.field in (props.modelValue || {})) {
|
||||
const newEdits = { ...props.modelValue };
|
||||
|
||||
Reference in New Issue
Block a user