From ebd67b29ddb026ca123cf822497e55b5d3020073 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Thu, 19 Dec 2024 21:06:30 +0200 Subject: [PATCH] No color change in the appointment modal window (in the backend calendar) (#1641) --- CHANGELOG.md | 3 +-- assets/js/components/appointments_modal.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd3dfba0..38acd724 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,8 +18,7 @@ developers to maintain and readjust their custom modifications on the main proje - Correct email issues by replacing the internal email library with phpmailer (#1587) - Fix ICS file mimetype (#1630) - Incorrect Timezone Handling in CalDAV Synchronization Causes Time Shifts (#1626) - - +- No color change in the appointment modal window (in the backend calendar) (#1641) diff --git a/assets/js/components/appointments_modal.js b/assets/js/components/appointments_modal.js index 91f80830..6175fb82 100755 --- a/assets/js/components/appointments_modal.js +++ b/assets/js/components/appointments_modal.js @@ -366,7 +366,7 @@ App.Components.AppointmentsModal = (function () { }); if (service?.color) { - App.Components.ColorSelection.getColor($appointmentColor, service.color); + App.Components.ColorSelection.setColor($appointmentColor, service.color); } const duration = service ? service.duration : 60;