From fe1a0b2f7860405799541a2d0e1dd9bbcd576e4b Mon Sep 17 00:00:00 2001 From: fs Date: Sun, 5 Apr 2026 21:02:52 +0200 Subject: [PATCH] fix(helpdesk): match queue name 'Wartschlange' (BC spelling without e) BC uses 'Wartschlange Customer Care' not 'Warteschlange'. Match on common stem 'wartschlang' to cover both spellings. Co-Authored-By: Claude Opus 4.6 (1M context) --- modules/helpdesk/web/js/helpdesk-team.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/helpdesk/web/js/helpdesk-team.js b/modules/helpdesk/web/js/helpdesk-team.js index 5329892..988a058 100644 --- a/modules/helpdesk/web/js/helpdesk-team.js +++ b/modules/helpdesk/web/js/helpdesk-team.js @@ -43,7 +43,7 @@ if (container) { * Detect queue entries — Support_User_Name contains 'warteschlange'. */ function isQueueMember(m) { - return m.support_user === '' || m.support_user.includes('warteschlange'); + return m.support_user === '' || m.support_user.includes('wartschlang'); } function initials(name) {