From a720f73bedc2653022ef59995775cbcb04369b6e Mon Sep 17 00:00:00 2001 From: kandrusyak Date: Tue, 1 Nov 2022 23:59:03 +0300 Subject: [PATCH] fix mistake --- src/pages/calendar/TheCalendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/calendar/TheCalendar.vue b/src/pages/calendar/TheCalendar.vue index 71673c0..07cf4f1 100644 --- a/src/pages/calendar/TheCalendar.vue +++ b/src/pages/calendar/TheCalendar.vue @@ -50,7 +50,7 @@ export default { }, methods: { switchPreviousDate() { - this.currentDate = this.currentDate.cloddContactne().subtract(1, "day"); + this.currentDate = this.currentDate.clone().subtract(1, "day"); }, switchNextDate() { this.currentDate = this.currentDate.clone().add(1, "day");