Skip to content

Commit

Permalink
impr(csv export): change main delimiter from | to , (vjgtigers) (#5249)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjgtigers authored Mar 25, 2024
1 parent 365572f commit a0403f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/ts/utils/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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" });
Expand Down

0 comments on commit a0403f7

Please sign in to comment.