If a relationship value is set to null, the row processor will set it to an empty to array an ensure its properly cleared. Previously the empty value would be an empty string, which was then set to an empty array in the rowProcessor

This commit is contained in:
Dean 2024-06-26 11:12:25 +01:00
parent ed0f60d5d7
commit 9adae8a9fd
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ const parseArrayString = (value: any) => {
*/
export const TYPE_TRANSFORM_MAP: any = {
[FieldType.LINK]: {
null: [],
"": [],
//@ts-ignore
[null]: [],