We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe534b commit 863357eCopy full SHA for 863357e
src/_site/controllers.js
@@ -255,7 +255,7 @@ function updateWithScrollIfNeeded (query) {
255
data += "\n";
256
data += map2csvStr(columns,rows[i],delimiter) ;
257
}
258
- var plain = 'data:text/csv,\uFEFF;charset=utf8,' + encodeURIComponent(data);
+ var plain = 'data:text/csv;charset=utf8,\uFEFF' + encodeURIComponent(data);
259
download(plain, "query_result.csv", "text/plain");
260
return true;
261
0 commit comments