diff --git a/frontend/src/components/CalendarManagement.vue b/frontend/src/components/CalendarManagement.vue index 7959a4bb9..36740a9d8 100644 --- a/frontend/src/components/CalendarManagement.vue +++ b/frontend/src/components/CalendarManagement.vue @@ -61,6 +61,7 @@ const filteredCalendars = computed(() => props.calendars.filter((calendar: Calen text-xs text-white disabled:scale-100 disabled:opacity-50 disabled:shadow-none " :title="t('label.connect')" + data-testid="connect-calendar-btn" > {{ t('label.connectCalendar') }} @@ -74,6 +75,7 @@ const filteredCalendars = computed(() => props.calendars.filter((calendar: Calen text-xs text-white disabled:scale-100 disabled:opacity-50 disabled:shadow-none " :title="t('label.edit')" + data-testid="edit-calendar-btn" > {{ t('label.editCalendar') }} @@ -84,6 +86,7 @@ const filteredCalendars = computed(() => props.calendars.filter((calendar: Calen :disabled="loading" @click="emit('remove', cal.id)" :title="t('label.remove')" + data-testid="remove-calendar-btn" > diff --git a/frontend/src/components/CalendarMiniMonth.vue b/frontend/src/components/CalendarMiniMonth.vue index 5d6c0f675..ee77304d2 100644 --- a/frontend/src/components/CalendarMiniMonth.vue +++ b/frontend/src/components/CalendarMiniMonth.vue @@ -1,13 +1,13 @@