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