We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19a5e80 + 1420c67 commit 78fce7eCopy full SHA for 78fce7e
1 file changed
src/JsonCSV.vue
@@ -167,11 +167,10 @@
167
return
168
}
169
170
- let csv = PapaParse.unparse(dataExport, {
+ let csv = PapaParse.unparse(dataExport, Object.assign({
171
delimiter: this.delimiter,
172
encoding: this.encoding,
173
- ...this.advancedOptions
174
- })
+ }, this.advancedOptions));
175
if (this.separatorExcel) {
176
csv = 'SEP=' + this.delimiter + '\r\n' + csv
177
0 commit comments