From 195b99e5885ee3b2205c95a16e38e13a5b29495a Mon Sep 17 00:00:00 2001 From: adisposkofh Date: Mon, 1 Jun 2026 13:52:54 +0200 Subject: [PATCH 1/4] minor fix re: calendar event timeslot display --- .../Cis/Renderer/Reservierungen/calendarEvent.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/js/components/Cis/Renderer/Reservierungen/calendarEvent.js b/public/js/components/Cis/Renderer/Reservierungen/calendarEvent.js index 5f1211afa..91c49d5e0 100644 --- a/public/js/components/Cis/Renderer/Reservierungen/calendarEvent.js +++ b/public/js/components/Cis/Renderer/Reservierungen/calendarEvent.js @@ -63,11 +63,6 @@ export default { isFutureEvent() { const eventStart = luxon.DateTime.fromISO(`${this.event.datum}T${this.event.beginn}`); return eventStart > luxon.DateTime.now(); - } - }, - methods: { - handleDelete() { - this.$emit('delete-event', this.event); }, timeSlotDisplayClasses() { switch (this.$props.timeSlotDisplayBehavior) { @@ -80,6 +75,11 @@ export default { } }, }, + methods: { + handleDelete() { + this.$emit('delete-event', this.event); + }, + }, template: /* html */`
From 1cff18112bcaef4217ced35cfc59b3b0329f9215 Mon Sep 17 00:00:00 2001 From: adisposkofh Date: Tue, 2 Jun 2026 11:09:13 +0200 Subject: [PATCH 2/4] removed auto-ban on sunday room reservations --- application/libraries/StundenplanLib.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/application/libraries/StundenplanLib.php b/application/libraries/StundenplanLib.php index cc8d4cc87..a2f8bbfe6 100644 --- a/application/libraries/StundenplanLib.php +++ b/application/libraries/StundenplanLib.php @@ -694,13 +694,6 @@ class StundenplanLib { $ymd = date('Y-m-d', $current); - if ((int)date('w', $current) === 0) - { - $result[$ymd] = false; - $current = $this->jump_day($current, 1); - continue; - } - $result[$ymd] = ($ymd >= $start_ymd_allowed && $ymd <= $end_ymd_allowed) ? true : false; $current = $this->jump_day($current, 1); From c2faff5a03bce863bc0289d16e9a40f7af052129 Mon Sep 17 00:00:00 2001 From: adisposkofh Date: Tue, 2 Jun 2026 11:52:13 +0200 Subject: [PATCH 3/4] minor fix --- public/js/components/Cis/Profil/MitarbeiterViewProfil.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/js/components/Cis/Profil/MitarbeiterViewProfil.js b/public/js/components/Cis/Profil/MitarbeiterViewProfil.js index 3362b56d7..95519a19a 100644 --- a/public/js/components/Cis/Profil/MitarbeiterViewProfil.js +++ b/public/js/components/Cis/Profil/MitarbeiterViewProfil.js @@ -43,6 +43,7 @@ export default { maxWidth: 40, headerClick: this.collapseFunction, visible: true, + responsive: 0, }, { title: Vue.computed(() => this.$p.t("ui/bezeichnung")), @@ -50,6 +51,7 @@ export default { headerFilter: true, minWidth: 200, visible: true, + responsive: 0, }, { title: Vue.computed(() => @@ -59,6 +61,7 @@ export default { headerFilter: true, minWidth: 200, visible: true, + responsive: 1, }, { title: Vue.computed(() => @@ -72,6 +75,7 @@ export default { visible: true, formatter: "datetime", formatterParams: this.datetimeFormatterParams(), + responsive: 4, }, { title: Vue.computed(() => @@ -85,6 +89,7 @@ export default { visible: true, formatter: "datetime", formatterParams: this.datetimeFormatterParams(), + responsive: 3, }, { title: Vue.computed(() => @@ -94,6 +99,7 @@ export default { headerFilter: true, minWidth: 200, visible: true, + responsive: 2, }, ], }, From f45782aeefb6d40c07e81f019757e582b205e3ee Mon Sep 17 00:00:00 2001 From: adisposkofh Date: Tue, 2 Jun 2026 12:49:11 +0200 Subject: [PATCH 4/4] removed redundant console log --- public/js/components/Cis/Profil/Profil.js | 1 - 1 file changed, 1 deletion(-) diff --git a/public/js/components/Cis/Profil/Profil.js b/public/js/components/Cis/Profil/Profil.js index d1833068e..f6e13da77 100644 --- a/public/js/components/Cis/Profil/Profil.js +++ b/public/js/components/Cis/Profil/Profil.js @@ -176,7 +176,6 @@ export const Profil = { this.data = data.profil_data.data; this.calendarSyncUrls = data.calendar_sync_urls ?? []; this.authPermissions = data.permissions; - console.log(data.profil_data); }, zustellAdressenCount() { if (!this.data || !this.data.adressen) {