From 6d82a2acf3324c1c4caae77c2fd93ce0656ce3f7 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Mon, 19 May 2025 01:57:10 -0600 Subject: [PATCH] Pull the stacked value from the correct location --- module/Apps/StatsViewer.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/Apps/StatsViewer.mjs b/module/Apps/StatsViewer.mjs index d65da35..bfa8447 100644 --- a/module/Apps/StatsViewer.mjs +++ b/module/Apps/StatsViewer.mjs @@ -260,10 +260,10 @@ export class StatsViewer extends HandlebarsApplicationMixin(ApplicationV2) { animation: false, scales: { y: { - stacked: table.config?.stacked ?? false, + stacked: table.graph?.stacked ?? false, }, x: { - stacked: table.config?.stacked ?? false, + stacked: table.graph?.stacked ?? false, }, }, },