Fix combat trend charts dropping zero kill and run counts.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+1
-1
@@ -914,7 +914,7 @@ function openCombatChartModal(combatType, combatKey, combatName) {
|
|||||||
const isDungeon = combatType === "dungeon";
|
const isDungeon = combatType === "dungeon";
|
||||||
const label = isDungeon ? t("combat.runsLabel") : t("combat.kills");
|
const label = isDungeon ? t("combat.runsLabel") : t("combat.kills");
|
||||||
const color = isDungeon ? "#fb923c" : "#f87171";
|
const color = isDungeon ? "#fb923c" : "#f87171";
|
||||||
openTrendChartModal(combatName, tl.snapshots, values, label, color, true);
|
openTrendChartModal(combatName, tl.snapshots, values, label, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeTrendChartModal() {
|
function closeTrendChartModal() {
|
||||||
|
|||||||
Reference in New Issue
Block a user