diff --git a/resources/js/components/content/Dashboard.vue b/resources/js/components/content/Dashboard.vue
index fb1b805..b21384f 100644
--- a/resources/js/components/content/Dashboard.vue
+++ b/resources/js/components/content/Dashboard.vue
@@ -1,20 +1,21 @@
@@ -14,6 +22,7 @@ const selectedDays = defineModel()
v-model="selectedDays"
:label="day.dayName"
:value="day.type"
+ :disabled="day.type === props.fixedDay"
/>
diff --git a/resources/js/components/content/partials/CalendarShowEvent.vue b/resources/js/components/content/partials/show/CalendarShowEvent.vue
similarity index 98%
rename from resources/js/components/content/partials/CalendarShowEvent.vue
rename to resources/js/components/content/partials/show/CalendarShowEvent.vue
index 575e969..d72f9a1 100644
--- a/resources/js/components/content/partials/CalendarShowEvent.vue
+++ b/resources/js/components/content/partials/show/CalendarShowEvent.vue
@@ -3,7 +3,7 @@ import type { PropType} from "vue";
import type {ContextMenuType} from "@models/misc/contextMenu"
import type {calendarShowEvent, ShowEventActionTrigger} from "@models/misc/calendarShowEvent.ts";
import {calendarShowEventMenu} from "@models/misc/calendarShowEvent";
-import {ref, computed, onMounted} from 'vue';
+import { ref } from 'vue';
import ContextMenu from '@partials/ContextMenu.vue';
const emit = defineEmits([