|
1 | 1 | <script setup lang="ts"> |
2 | | -import { CalendarManagementType, CalendarProviders, MetricEvents, ColorPalette, AlertSchemes } from '@/definitions'; |
3 | | -import { ref, reactive, inject, onMounted, computed } from 'vue'; |
| 2 | +import { |
| 3 | + CalendarManagementType, CalendarProviders, MetricEvents, ColorPalette, AlertSchemes, |
| 4 | +} from '@/definitions'; |
| 5 | +import { |
| 6 | + ref, reactive, inject, onMounted, computed, |
| 7 | +} from 'vue'; |
4 | 8 | import { useI18n } from 'vue-i18n'; |
5 | 9 | import { useRoute, useRouter } from 'vue-router'; |
6 | 10 | import { useCalendarStore } from '@/stores/calendar-store'; |
7 | 11 | import { callKey, refreshKey } from '@/keys'; |
8 | | -import { CalendarResponse, CalendarListResponse, Exception, ExceptionDetail, PydanticException } from '@/models'; |
| 12 | +import { |
| 13 | + CalendarResponse, CalendarListResponse, Exception, ExceptionDetail, PydanticException, |
| 14 | +} from '@/models'; |
9 | 15 | import AlertBox from '@/elements/AlertBox.vue'; |
10 | 16 | import CalendarManagement from '@/components/CalendarManagement.vue'; |
11 | 17 | import CautionButton from '@/elements/CautionButton.vue'; |
@@ -33,6 +39,7 @@ const deleteCalendarModalTarget = ref<number>(null); |
33 | 39 | const loading = ref(false); |
34 | 40 |
|
35 | 41 | // handle calendar user input to add or edit calendar connections |
| 42 | +// eslint-disable-next-line no-shadow |
36 | 43 | enum InputModes { |
37 | 44 | Hidden, |
38 | 45 | Discovery, |
|
0 commit comments