diff --git a/ui/src/components/calendar/CreateCalendarEvent.vue b/ui/src/components/calendar/CreateCalendarEvent.vue
index b347a51..a898b98 100644
--- a/ui/src/components/calendar/CreateCalendarEvent.vue
+++ b/ui/src/components/calendar/CreateCalendarEvent.vue
@@ -91,8 +91,8 @@ function makeInitialValues() {
let start: Date;
if (clickedDate.value) {
- const local = new Date(clickedDate.value + "T00:00:00");
- start = roundToNextHour(local);
+ const local = new Date(clickedDate.value + "T20:00:00");
+ start = local;
} else {
start = roundToNextHour();
}
@@ -312,10 +312,10 @@ function getColorName(hex: string) {
Description
-
+
-
+
@@ -333,3 +333,33 @@ function getColorName(hex: string) {
+
+
\ No newline at end of file