Skip to content

Commit

Permalink
fix: 修复多选导出csv,导致表格错位的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed Jul 2, 2023
1 parent cc465d1 commit 4e0bf5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/fast-crud/src/lib/fs-export/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function defaultDataFormatter({ originalRow, row, key, col }: DataFormatterConte
if (nodes != null && nodes.length > 0) {
row[key] = _.map(nodes, (node) => {
return dict.getLabel(node);
}).join(",");
}).join("|");
}
}
return row;
Expand Down

0 comments on commit 4e0bf5b

Please sign in to comment.