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.
2 parents a71923c + ae91856 commit a6c1020Copy full SHA for a6c1020
web-client/src/components/SrExportDialog.vue
@@ -203,7 +203,7 @@ function safeCsvCell(val: any): string {
203
204
// 2) TypedArrays (Float64Array, Int32Array, etc.)
205
if (ArrayBuffer.isView(val) && !(val instanceof DataView)) {
206
- const s = JSON.stringify(Array.from(val as ArrayLike<number>));
+ const s = JSON.stringify(Array.from(val as unknown as Iterable<number>));
207
return `"${s.replace(/"/g, '""')}"`;
208
}
209
0 commit comments