Skip to content

Commit

Permalink
Merge pull request #121 from proximax-foundry/export-csv-transaction
Browse files Browse the repository at this point in the history
export csv show older to latest
  • Loading branch information
Ghost-Slime authored Oct 17, 2022
2 parents 1b8071f + 44f33b5 commit 695260c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/transaction/components/ExportCSVComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
let str = '';
let csvData = '';
let header = [];
for (let i = 0; i < array.length; i++) {
for (let i = array.length-1; i >= 0; i--) {
let line = '';
for (const index in array[i]) {
header.push(index);
Expand Down

0 comments on commit 695260c

Please sign in to comment.