Skip to content

Commit ca1ffa2

Browse files
committed
fix(mime): set the proper mime to the file
1 parent f9d82e9 commit ca1ffa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsonCSV.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export default {
199199
this.$emit("export-finished");
200200
if (!this.testing) {
201201
let blob = new Blob([csv], {
202-
type: "application/csvcharset=" + this.encoding
202+
type: "text/csv;charset=" + this.encoding
203203
});
204204
saveAs(blob, this.name);
205205
}

0 commit comments

Comments
 (0)