diff --git a/src/pages/calendar/TheCalendar.vue b/src/pages/calendar/TheCalendar.vue index d49d619..2edf473 100644 --- a/src/pages/calendar/TheCalendar.vue +++ b/src/pages/calendar/TheCalendar.vue @@ -56,7 +56,7 @@ import CalendarSidebar from "./components/CalendarSidebar.vue"; import CalendarFormAddEvent from "./components/CalendarFormAddEvent.vue"; import BaseModal from "@/components/base/BaseModal.vue"; import CalendarDeleteModal from "./components/CalendarDeleteModal.vue"; -import { calendarConfig } from "@/pages/calendar/utils/calendarConfig"; +import { statusesDictionary } from "@/pages/calendar/utils/statusesDictionary"; export default { name: "TheCalendar", @@ -86,7 +86,7 @@ export default { isOpenForm: false, WORKING_STATUS: "WORKS", changeFormWasClosed: false, - eventStatuses: calendarConfig, + eventStatuses: statusesDictionary, }; }, methods: { diff --git a/src/pages/calendar/components/CalendarEventDescriptionCard.vue b/src/pages/calendar/components/CalendarEventDescriptionCard.vue index 0080951..b25c8b4 100644 --- a/src/pages/calendar/components/CalendarEventDescriptionCard.vue +++ b/src/pages/calendar/components/CalendarEventDescriptionCard.vue @@ -26,7 +26,8 @@