Skip to content

Commit

Permalink
24.02.53: merged and published 23.12.132 [DEV-3797]
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Feb 19, 2024
2 parents f0d0162 + 775793c commit 48397a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "24.2.52",
"version": "24.2.53",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
3 changes: 2 additions & 1 deletion src/modules/CSVExport/CSVExport.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ export default class CSVExport {
async stringify(params = {}) {
let csv = '';
let isNext = false;
let columns = params?.fields ? objSnakeToCamel(params?.fields) : [];
// why _columns? https://webitel.atlassian.net/browse/DEV-3797
let columns = params._columns || (params?.fields ? objSnakeToCamel(params?.fields) : []);
let page = 1;

do {
Expand Down

0 comments on commit 48397a9

Please sign in to comment.