fix: refresh data after deleting an event in WorkerCalendar
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-05-21 07:43:22 +02:00
parent 6c18e6d40d
commit ec5caef07c
1 changed files with 1 additions and 0 deletions

View File

@ -148,6 +148,7 @@ const onDeletedEvent = (timestamp) => {
// Si el evento que eliminamos se encontraba dentro de un dia festivo, volvemos a agregar el evento festivo
if (festiveEventsMap.value[timestamp])
eventsMap.value[timestamp] = festiveEventsMap.value[timestamp];
refreshData();
};
const activeContractRef = ref(null);