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 d6148e1 commit 323cb0fCopy full SHA for 323cb0f
client/packages/lowcoder/src/comps/comps/fileComp/fileComp.tsx
@@ -210,7 +210,7 @@ export function resolveParsedValue(files: UploadFile[]) {
210
.then((a) => {
211
const ext = mime.getExtension(f.originFileObj?.type ?? "");
212
if (ext === "xlsx" || ext === "csv") {
213
- const workbook = XLSX.read(a, { raw: true });
+ const workbook = XLSX.read(a, { raw: true, codepage: 65001 });
214
return XLSX.utils.sheet_to_json(workbook.Sheets[workbook.SheetNames[0]], {
215
raw: false,
216
});
0 commit comments