From 7ec64693a1121066f22f454adf3ba8aea896ddcd Mon Sep 17 00:00:00 2001 From: Otto Jongerius Date: Wed, 20 May 2026 18:53:32 +1200 Subject: [PATCH] fix(ui): truncate long action type labels in distribution chart --- internal/server/static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/server/static/index.html b/internal/server/static/index.html index 1f16ebe..8a112a0 100644 --- a/internal/server/static/index.html +++ b/internal/server/static/index.html @@ -899,7 +899,7 @@ const maxAction = Math.max(...topActions.map(r => r.count), 1); document.getElementById('action-chart').innerHTML = topActions.map(r => `
- ${escapeHtml(r.label)} + ${escapeHtml(r.label)}
${r.count}