bugfix: CSV Agent was overwriting contents when multiple files were u… (#2002)
bugfix: CSV Agent was overwriting contents when multiple files were uploaded
This commit is contained in:
parent
dee681b63e
commit
0267005225
|
|
@ -100,7 +100,7 @@ class CSV_Agents implements INode {
|
||||||
for (const file of files) {
|
for (const file of files) {
|
||||||
const splitDataURI = file.split(',')
|
const splitDataURI = file.split(',')
|
||||||
splitDataURI.pop()
|
splitDataURI.pop()
|
||||||
base64String = splitDataURI.pop() ?? ''
|
base64String += splitDataURI.pop() ?? ''
|
||||||
}
|
}
|
||||||
|
|
||||||
const pyodide = await LoadPyodide()
|
const pyodide = await LoadPyodide()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue