JSONL data editor supports data types

This commit is contained in:
Jan Prochazka
2024-08-26 14:26:38 +02:00
parent 32ebd86171
commit 2232a7bab1
12 changed files with 67 additions and 20 deletions

View File

@@ -61,10 +61,13 @@ class ParseStream extends stream.Transform {
if (update.document) {
obj = update.document;
} else {
obj = {
...obj,
...update.fields,
};
obj = _.omitBy(
{
...obj,
...update.fields,
},
(v, k) => v.$$undefined$$
);
}
}