Zone Calendar #411

Merged
jsegarra merged 28 commits from :feature/ZoneCalendar into dev 2024-06-07 07:40:01 +00:00
3 changed files with 0 additions and 5 deletions
Showing only changes of commit 3cb17eeb66 - Show all commits

View File

@ -120,7 +120,6 @@ const refetchEvents = async () => {
};
onMounted(() => {
console.log('props.event', props.event);
if (props.event) {
dated.value = props.event?.dated;
excludeType.value =

View File

@ -94,8 +94,6 @@ const date = computed({
months.value.push(monthDate);
}
console.log('firstDay', firstDay.value);
console.log('lastDay', lastDay.value);
refreshEvents();
},
});

View File

@ -97,7 +97,6 @@ const deleteEvent = async (id) => {
};
const openIncludeForm = (event) => {
console.log('zone event panel EVENT: ', event);
formName.value = 'include';
emit('openZoneForm', {
date: event.dated,
@ -108,7 +107,6 @@ const openIncludeForm = (event) => {
onMounted(async () => {
weekdayStore.initStore();
console.log('weekdayStore', weekdayStore.getLocalesMap);
await nextTick();
await fetchData();
startParamsWatcher();