mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(editor): Display default missing value in table view as undefined
(#5038)
🐛 Switch `runDataTable` default to `undefined`
This commit is contained in:
parent
a75dcc755b
commit
33d7a13e73
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue