Skip to content

Commit

Permalink
fix(mime): set the proper mime to the file
Browse files Browse the repository at this point in the history
  • Loading branch information
Belphemur committed Mar 28, 2022
1 parent f9d82e9 commit ca1ffa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JsonCSV.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export default {
this.$emit("export-finished");
if (!this.testing) {
let blob = new Blob([csv], {
type: "application/csvcharset=" + this.encoding
type: "text/csv;charset=" + this.encoding
});
saveAs(blob, this.name);
}
Expand Down

0 comments on commit ca1ffa2

Please sign in to comment.