From 1c6bcd6ec3ca7596e4c86348fc5f0ddc8f68b695 Mon Sep 17 00:00:00 2001 From: fs Date: Sun, 5 Apr 2026 20:41:39 +0200 Subject: [PATCH] fix(helpdesk): move resolution time to last column in performance grid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reorder: Top customers | Top categories | Resolution time. More logical flow — pick a filter on the left, see the result on the right. Co-Authored-By: Claude Opus 4.6 (1M context) --- modules/helpdesk/web/js/helpdesk-team.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/helpdesk/web/js/helpdesk-team.js b/modules/helpdesk/web/js/helpdesk-team.js index a9f3d24..2c18cdb 100644 --- a/modules/helpdesk/web/js/helpdesk-team.js +++ b/modules/helpdesk/web/js/helpdesk-team.js @@ -255,7 +255,6 @@ if (container) { timeList.appendChild(maxLi); timeStats.appendChild(timeList); - grid.appendChild(timeStats); // Callback: update resolution times when a filter is applied or cleared function updateResolution(filtered) { @@ -292,6 +291,9 @@ if (container) { ); if (categoriesEl) grid.appendChild(categoriesEl); + // Resolution time last — updates when customer/category is clicked + grid.appendChild(timeStats); + section.appendChild(grid); return section; }