From e233e3c7627c6167c97afc7a0feed5f844c4c035 Mon Sep 17 00:00:00 2001 From: elpatron Date: Mon, 22 Jun 2026 14:17:00 +0200 Subject: [PATCH] Fix combat trend charts dropping zero kill and run counts. Co-authored-by: Cursor --- static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index fb673fa..53e21cc 100644 --- a/static/app.js +++ b/static/app.js @@ -914,7 +914,7 @@ function openCombatChartModal(combatType, combatKey, combatName) { const isDungeon = combatType === "dungeon"; const label = isDungeon ? t("combat.runsLabel") : t("combat.kills"); const color = isDungeon ? "#fb923c" : "#f87171"; - openTrendChartModal(combatName, tl.snapshots, values, label, color, true); + openTrendChartModal(combatName, tl.snapshots, values, label, color); } function closeTrendChartModal() {