Skip to content

Commit

Permalink
Changed export extension from xlsx to csv
Browse files Browse the repository at this point in the history
  • Loading branch information
brappop committed Aug 7, 2018
1 parent 7a59903 commit 80b1bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/enpi_tool.js
Original file line number Diff line number Diff line change
Expand Up @@ -2130,7 +2130,7 @@ function exportData(){

var blob = new Blob([csv], {type: "text/plain;charset=utf-8"});

saveAs(blob, "export.xlsx");
saveAs(blob, "export.csv");

}

Expand Down

0 comments on commit 80b1bfd

Please sign in to comment.