diff --git a/components/calendar/Calendar.vue b/components/calendar/Calendar.vue index e9b65df..6c39ec0 100644 --- a/components/calendar/Calendar.vue +++ b/components/calendar/Calendar.vue @@ -2,8 +2,6 @@ import { useCalendar } from '@/stores/CalendarStore' import { computed, type Component, type ComputedRef } from 'vue' -import CalendarMenu from './CalendarMenu.vue' - import MonthlyLayout from './state/monthly/Layout.vue' import CenturyLayout from './state/centennially/Layout.vue' import DecadeLayout from './state/decennially/Layout.vue' diff --git a/components/calendar/CalendarEvent.vue b/components/calendar/CalendarEvent.vue index cfb6b74..e80d2ce 100644 --- a/components/calendar/CalendarEvent.vue +++ b/components/calendar/CalendarEvent.vue @@ -1,14 +1,14 @@ diff --git a/components/calendar/search/CalendarSearch.vue b/components/calendar/search/CalendarSearch.vue index f01ba74..c1a266c 100644 --- a/components/calendar/search/CalendarSearch.vue +++ b/components/calendar/search/CalendarSearch.vue @@ -5,13 +5,13 @@ import { type Character, type CharacterCategory } from '@/models/Characters' -import type { LeimDateOrder } from '@/models/Date' +import type { RPGDateOrder } from '@/models/Date' import { calendarEventCategories, isCalendarEvent, type CalendarEvent, type CalendarEventCategory -} from '@/models/Events' +} from '~/models/CalendarEvent' import { useCharacters } from '@/stores/CharacterStore' import { useCalendarEvents } from '@/stores/EventStore' import { capitalize } from '@/utils/Strings' @@ -41,7 +41,7 @@ const searchQuery = ref('') const selectedEntity = useStorage('se', 'events' as SearchMode) // Order -const selectedOrder = ref('asc') +const selectedOrder = ref('asc') function setOrderAsc() { selectedOrder.value = 'asc' resetPage() diff --git a/components/calendar/search/lists/CharacterCallout.vue b/components/calendar/search/lists/CharacterCallout.vue index 932fde1..44df23c 100644 --- a/components/calendar/search/lists/CharacterCallout.vue +++ b/components/calendar/search/lists/CharacterCallout.vue @@ -1,6 +1,6 @@