Skip to content

Commit ae35e35

Browse files
authored
List fix export all to csv being empty (#2669)
1 parent 4a4a9a8 commit ae35e35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dt-assets/js/modular-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4326,7 +4326,7 @@
43264326
});
43274327

43284328
// Assuming counts match, assign to parent csv download array.
4329-
if (csv_row.length === exporting_fields.length + 1) {
4329+
if (csv_row.length <= exporting_fields.length + 1) {
43304330
csv_export.push(csv_row);
43314331
}
43324332
});

0 commit comments

Comments
 (0)