diff --git a/packages/server/src/api/controllers/row/utils.ts b/packages/server/src/api/controllers/row/utils.ts index a7c467ea61..f6a87dd24c 100644 --- a/packages/server/src/api/controllers/row/utils.ts +++ b/packages/server/src/api/controllers/row/utils.ts @@ -69,9 +69,9 @@ export async function validate({ if (type === FieldTypes.FORMULA || column.autocolumn) { continue } - // special case for options, need to always allow unselected (null) + // special case for options, need to always allow unselected (empty) if (type === FieldTypes.OPTIONS && constraints.inclusion) { - constraints.inclusion.push(null) + constraints.inclusion.push(null, "") } let res