Fix combat trend charts dropping zero kill and run counts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-22 14:17:00 +02:00
parent 91444aec52
commit e233e3c762
+1 -1
View File
@@ -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() {