Fixed #3328 - DataTable: exportData exclude column footers

pull/3594/head
Tuğçe Küçükoğlu 2023-01-27 11:47:41 +03:00
parent a7fe4d96db
commit c1a961c07e
1 changed files with 1 additions and 1 deletions

View File

@ -1368,7 +1368,7 @@ export default {
if (i === 0) csv += '\n';
if (this.columnProp(column, 'exportable') !== false && this.columnProp(column, 'field')) {
if (this.columnProp(column, 'exportable') !== false && this.columnProp(column, 'exportFooter')) {
if (footerInitiated) csv += this.csvSeparator;
else footerInitiated = true;