From 53db16691605dd4cdcc106ece0cf11aabaf5ce38 Mon Sep 17 00:00:00 2001 From: fs Date: Mon, 6 Apr 2026 00:34:01 +0200 Subject: [PATCH] fix(helpdesk): replace cryptic net flow label with arrow indicator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Show ↑3 (growing) or ↓2 (shrinking) instead of '+3 net' / '-2 net'. Same visual language as the team dashboard trend arrows. Co-Authored-By: Claude Opus 4.6 (1M context) --- modules/helpdesk/web/js/helpdesk-risk-radar.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/helpdesk/web/js/helpdesk-risk-radar.js b/modules/helpdesk/web/js/helpdesk-risk-radar.js index dadd9c5..65c0279 100644 --- a/modules/helpdesk/web/js/helpdesk-risk-radar.js +++ b/modules/helpdesk/web/js/helpdesk-risk-radar.js @@ -103,7 +103,8 @@ if (container) { if (kpis.net_flow !== 0) { const flowM = h('span', 'helpdesk-risk-card-metric'); - flowM.textContent = (kpis.net_flow > 0 ? '+' : '') + kpis.net_flow + ' ' + d('labelNet', 'net'); + const arrow = kpis.net_flow > 0 ? '↑' : '↓'; + flowM.textContent = arrow + Math.abs(kpis.net_flow); if (kpis.net_flow > 0) flowM.classList.add('helpdesk-risk-card-metric-warn'); metrics.appendChild(flowM); }