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:
parent
ed0f60d5d7
commit
9adae8a9fd
|
@ -21,6 +21,7 @@ const parseArrayString = (value: any) => {
|
|||
*/
|
||||
export const TYPE_TRANSFORM_MAP: any = {
|
||||
[FieldType.LINK]: {
|
||||
null: [],
|
||||
"": [],
|
||||
//@ts-ignore
|
||||
[null]: [],
|
||||
|
|
Loading…
Reference in New Issue