From bdeb2b9970ad1786b84fd4bdc70bf0dc084a7b77 Mon Sep 17 00:00:00 2001 From: fs Date: Sun, 5 Apr 2026 21:49:24 +0200 Subject: [PATCH] fix(helpdesk): clicking sidebar icon opens nav panel instead of navigating Set href to empty string so the Helpdesk sidebar icon toggles the navigation panel open/closed without navigating to the customers page. Same pattern as the bookmarks module. Co-Authored-By: Claude Opus 4.6 (1M context) --- modules/helpdesk/module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/helpdesk/module.php b/modules/helpdesk/module.php index 6e2f975..7bc496e 100644 --- a/modules/helpdesk/module.php +++ b/modules/helpdesk/module.php @@ -46,7 +46,7 @@ return [ 'key' => 'helpdesk', 'label' => 'Helpdesk', 'icon' => 'bi-headset', - 'href' => 'helpdesk', + 'href' => '', 'permission' => 'helpdesk.access', 'panel_template' => 'templates/aside-helpdesk-panel.phtml', 'details_storage' => 'aside-helpdesk-sections-v1',