Merge pull request #940 from Budibase/bugfix/csv-charset-problem

fixes encoding issue of file to work with non-english chars
This commit is contained in:
Kevin Åberg Kultalahti 2020-12-18 11:37:59 +01:00 committed by GitHub
commit be9f036b40
4 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@
files = fileArray
validateCSV()
})
reader.readAsBinaryString(fileArray[0])
reader.readAsText(fileArray[0])
}
async function omitColumn(columnName) {

View File

@ -5,7 +5,7 @@ Array [
Object {
"Address": "5 Sesame Street",
"Age": 4324,
"Name": "Bert",
"Name": "Bertå",
},
Object {
"Address": "1 World Trade Center",

View File

@ -89,7 +89,7 @@ describe("CSV Parser", () => {
})
).toEqual([
{
Name: "Bert",
Name: "Bertå",
},
{
Name: "Ernie",

View File

@ -1,4 +1,4 @@
"Name","Age","Address"
"Bert","4324","5 Sesame Street"
"Bertå","4324","5 Sesame Street"
"Ernie","34","1 World Trade Center"
"Big Bird","23423","44 Second Avenue"
1 Name Age Address
2 Bert Bertå 4324 5 Sesame Street
3 Ernie 34 1 World Trade Center
4 Big Bird 23423 44 Second Avenue