1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Fixing coercion of null to empty string for options fields.

This commit is contained in:
mike12345567 2021-02-25 11:26:28 +00:00
parent 468ee7ac0c
commit 641fd42686

View file

@ -26,7 +26,7 @@ const TYPE_TRANSFORM_MAP = {
},
[FieldTypes.OPTIONS]: {
"": null,
[null]: "",
[null]: null,
[undefined]: undefined,
},
[FieldTypes.STRING]: {