Aggiunti log per login

This commit is contained in:
2025-06-03 17:23:28 +02:00
parent 6a6d403d93
commit 6104a43814
3 changed files with 195 additions and 150 deletions

View File

@@ -312,7 +312,6 @@ const error_message = ref(null);
const loading = ref(false);
const data_loaded = ref(false);
const loading_data = ref(false);
const errored_execution = ref(false);
const formData = ref({});
const exec_id = ref(null);
const exec_scenario = ref({});
@@ -526,6 +525,7 @@ const openDebug = () => {
};
const pollBackendAPI = () => {
const errored_execution = ref(false);
axios.get('/scenarios/getExecutionProgress/' + exec_id.value).then((response) => {
if (response.data.status == 'OK' || response.data.status == 'ERROR') {
console.log('Condition met, stopping polling.');