fix(editor): Display default missing value in table view as undefined (#5038)

🐛 Switch `runDataTable` default to `undefined`
This commit is contained in:
Iván Ovejero 2022-12-27 17:22:48 +01:00 committed by GitHub
parent a75dcc755b
commit 33d7a13e73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -482,8 +482,8 @@ export default mixins(externalHooks).extend({
(typeof entry[key] === 'object' && Object.keys(entry[key] || {}).length > 0) ||
false;
} else {
// Entry does not have key so add null
entryRows.push(null);
// Entry does not have key so add undefined
entryRows.push(undefined);
}
});