We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd08ac5 commit fa3c988Copy full SHA for fa3c988
src/field.ts
@@ -87,13 +87,16 @@ class Field {
87
: fieldObj.uid;
88
const path = schemaPath.split(".");
89
let value = event.data
90
-
+ console.log("value-->updateFields PRE", value);
91
path.forEach((key) => {
92
if (value) {
93
value = Object.create(value[key] as GenericObjectType)
94
+ console.log("value-->updateFields IF", value);
95
}
96
});
97
98
+ console.log("value-->updateFields POST", value);
99
+
100
if (fieldObj._data !== value) {
101
fieldObj._data = value;
102
0 commit comments