Fixed errors and added the loading of step 3 document types

This commit is contained in:
2026-01-08 17:18:43 +01:00
parent 43e21cfd8d
commit c833d5bb74
4 changed files with 68 additions and 60 deletions
+2 -3
View File
@@ -16,7 +16,6 @@ window.addEventListener('load', async (e) => {
console.log("Error in the window listener load in the renderer.js \n");
console.log(error);
}
});
//Listener if the language of the displayed text's in the gui should be changed
@@ -25,8 +24,8 @@ language_option.addEventListener('change', (e)=>{
const select = document.getElementById('language_option');
changeLanguage(select.value);
} catch (error) {
console.log("Error in the language_option change listener in the renderer.js");
console.log(error);
console.log("Error in the language_option change listener in the renderer.js");
console.log(error);
}
});