From eac23400a83b717f5e53691c8baa4e8545832a24 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 1 May 2025 20:46:24 -0600 Subject: [PATCH] Correct data structure --- module/utils/databases/Memory.mjs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/module/utils/databases/Memory.mjs b/module/utils/databases/Memory.mjs index b3ea1d3..df787b3 100644 --- a/module/utils/databases/Memory.mjs +++ b/module/utils/databases/Memory.mjs @@ -26,7 +26,8 @@ export class MemoryDatabase extends Database { max: 20, step: 1, }, - config: { + graph: { + type: `bar`, stacked: true, }, }, @@ -38,7 +39,8 @@ export class MemoryDatabase extends Database { max: 100, step: 1, }, - config: { + graph: { + type: `bar`, stacked: true, }, }, @@ -49,7 +51,8 @@ export class MemoryDatabase extends Database { min: 0, step: 1, }, - config: { + graph: { + type: `bar`, stacked: true, }, }, @@ -62,7 +65,8 @@ export class MemoryDatabase extends Database { textSearch: false, // forced false choices: [`Normal`, `Popped Off`, `Downed`], }, - config: { + graph: { + type: `bar`, stacked: true, }, },