Appointment notification : link to panel DTL tab

This commit is contained in:
isUnknown 2025-01-27 18:41:13 +01:00
parent 53e8bd29ed
commit 0dc246d8e1

View file

@ -128,7 +128,11 @@ function readAll() {
// Functions
function handleNotificationClick(notification) {
const href = getHref(notification);
const href =
notification.type === "appointment-request"
? getHref(notification) + "?tab=designToLight"
: getHref(notification);
if (href.startsWith("http")) {
window.open(href, "_blank");
} else {