Added missing rowProcessor mapping config for BB_Reference, BB_Reference_Single and Attachment_Single
This commit is contained in:
parent
b6d7715831
commit
23b0f3dfe4
|
@ -50,6 +50,20 @@ export const TYPE_TRANSFORM_MAP: any = {
|
||||||
[undefined]: undefined,
|
[undefined]: undefined,
|
||||||
parse: parseArrayString,
|
parse: parseArrayString,
|
||||||
},
|
},
|
||||||
|
[FieldType.BB_REFERENCE]: {
|
||||||
|
//@ts-ignore
|
||||||
|
[null]: [],
|
||||||
|
//@ts-ignore
|
||||||
|
[undefined]: undefined,
|
||||||
|
parse: parseArrayString,
|
||||||
|
},
|
||||||
|
[FieldType.BB_REFERENCE_SINGLE]: {
|
||||||
|
"": null,
|
||||||
|
//@ts-ignore
|
||||||
|
[null]: null,
|
||||||
|
//@ts-ignore
|
||||||
|
[undefined]: undefined,
|
||||||
|
},
|
||||||
[FieldType.STRING]: {
|
[FieldType.STRING]: {
|
||||||
"": null,
|
"": null,
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
|
@ -113,6 +127,9 @@ export const TYPE_TRANSFORM_MAP: any = {
|
||||||
[undefined]: undefined,
|
[undefined]: undefined,
|
||||||
parse: parseArrayString,
|
parse: parseArrayString,
|
||||||
},
|
},
|
||||||
|
[FieldType.ATTACHMENT_SINGLE]: {
|
||||||
|
"": null,
|
||||||
|
},
|
||||||
[FieldType.BOOLEAN]: {
|
[FieldType.BOOLEAN]: {
|
||||||
"": null,
|
"": null,
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
|
|
Loading…
Reference in New Issue