diff --git a/src/views/pages/ScenarioExec.vue b/src/views/pages/ScenarioExec.vue index c44f400..3461e99 100644 --- a/src/views/pages/ScenarioExec.vue +++ b/src/views/pages/ScenarioExec.vue @@ -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);