diff --git a/src/views/pages/DashExecution.vue b/src/views/pages/DashExecution.vue index 6fbfe98..1ff4b4f 100644 --- a/src/views/pages/DashExecution.vue +++ b/src/views/pages/DashExecution.vue @@ -488,14 +488,14 @@ const exportExecutions = () => { // Crea il CSV manualmente const headers = Object.keys(dataForExport[0]); - const csvContent = [headers.join(','), ...dataForExport.map((row) => headers.map((header) => `"${row[header]}"`).join(','))].join('\n'); + const csvContent = [headers.join(';'), ...dataForExport.map((row) => headers.map((header) => `"${row[header]}"`).join(';'))].join('\n'); // Download del file const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' }); const link = document.createElement('a'); const url = URL.createObjectURL(blob); link.setAttribute('href', url); - link.setAttribute('download', `executions_${moment().format('YYYY-MM-DD')}.csv`); + link.setAttribute('download', `Executions_${moment().format('YYYY-MM-DD_mm-ss')}.csv`); link.style.visibility = 'hidden'; document.body.appendChild(link); link.click(); diff --git a/src/views/pages/ScenarioList.vue b/src/views/pages/ScenarioList.vue index 6528536..8a453a7 100644 --- a/src/views/pages/ScenarioList.vue +++ b/src/views/pages/ScenarioList.vue @@ -92,7 +92,7 @@ import { UserPrefStore } from '../../stores/UserPrefStore.js'; const scenarioTypeOp = ref([ { name: 'All', value: 'all' }, - { name: 'Cross', value: 'cross' }, + //{ name: 'Cross', value: 'cross' }, { name: 'Project', value: 'project' }, { name: 'Application', value: 'application' } @@ -103,7 +103,7 @@ const scenarioTypeOp = ref([ scenario_store.setFilterString(''); userPrefStore.fetchUserData().then(() => { - scenario_store.fetchScenariosCross(); + //scenario_store.fetchScenariosCross(); scenario_store.fetchScenarios(); if(userPrefStore.getSelApp != null){ scenario_store.fetchApplicationScenarios();