mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-04 18:53:26 +08:00
impr(csv export): change main delimiter from | to , (vjgtigers) (#5249)
This commit is contained in:
parent
365572f652
commit
a0403f79a5
1 changed files with 3 additions and 3 deletions
|
@ -1230,7 +1230,7 @@ export async function downloadResultsCSV(
|
|||
item.acc,
|
||||
item.rawWpm,
|
||||
item.consistency,
|
||||
item.charStats.join(","),
|
||||
item.charStats.join(";"),
|
||||
item.mode,
|
||||
item.mode2,
|
||||
item.quoteLength,
|
||||
|
@ -1246,11 +1246,11 @@ export async function downloadResultsCSV(
|
|||
item.lazyMode,
|
||||
item.blindMode,
|
||||
item.bailedOut,
|
||||
item.tags.join(","),
|
||||
item.tags.join(";"),
|
||||
item.timestamp,
|
||||
]),
|
||||
]
|
||||
.map((e) => e.join("|"))
|
||||
.map((e) => e.join(","))
|
||||
.join("\n");
|
||||
|
||||
const blob = new Blob([csvString], { type: "text/csv" });
|
||||
|
|
Loading…
Reference in a new issue