bug exec
This commit is contained in:
@@ -560,7 +560,6 @@ if (scenario.value.inputs.some((input) => input.name === 'MultiFileUpload')) {
|
|||||||
|
|
||||||
}else{
|
}else{
|
||||||
console.log("Error in execution");
|
console.log("Error in execution");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -895,7 +894,7 @@ const downloadZipFile = async (fileName) => {
|
|||||||
function downloadFile() {
|
function downloadFile() {
|
||||||
try {
|
try {
|
||||||
// Converti la stringa base64 in un blob
|
// Converti la stringa base64 in un blob
|
||||||
const base64String = this.scenario_output;
|
const base64String = this.scenario_output.value;
|
||||||
const byteCharacters = atob(base64String);
|
const byteCharacters = atob(base64String);
|
||||||
const byteNumbers = Array.from(byteCharacters, char => char.charCodeAt(0));
|
const byteNumbers = Array.from(byteCharacters, char => char.charCodeAt(0));
|
||||||
const byteArray = new Uint8Array(byteNumbers);
|
const byteArray = new Uint8Array(byteNumbers);
|
||||||
|
|||||||
Reference in New Issue
Block a user