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 d918153 commit 81c1244Copy full SHA for 81c1244
webiojs/src/models/datatable.ts
@@ -51,7 +51,7 @@ function flatten_row_and_extract_column(
51
path.push(key);
52
if (!(key in current_columns))
53
current_columns[key] = {};
54
- if (typeof val == "object") {
+ if (typeof val == "object" && !Array.isArray(val)) {
55
flatten_row_and_extract_column(val, current_columns[key], row_data, path);
56
} else {
57
row_data[path2field(path)] = val;
0 commit comments