Correct data structure

This commit is contained in:
Oliver-Akins 2025-05-01 20:46:24 -06:00
parent a3900a6c7c
commit eac23400a8

View file

@ -26,7 +26,8 @@ export class MemoryDatabase extends Database {
max: 20, max: 20,
step: 1, step: 1,
}, },
config: { graph: {
type: `bar`,
stacked: true, stacked: true,
}, },
}, },
@ -38,7 +39,8 @@ export class MemoryDatabase extends Database {
max: 100, max: 100,
step: 1, step: 1,
}, },
config: { graph: {
type: `bar`,
stacked: true, stacked: true,
}, },
}, },
@ -49,7 +51,8 @@ export class MemoryDatabase extends Database {
min: 0, min: 0,
step: 1, step: 1,
}, },
config: { graph: {
type: `bar`,
stacked: true, stacked: true,
}, },
}, },
@ -62,7 +65,8 @@ export class MemoryDatabase extends Database {
textSearch: false, // forced false textSearch: false, // forced false
choices: [`Normal`, `Popped Off`, `Downed`], choices: [`Normal`, `Popped Off`, `Downed`],
}, },
config: { graph: {
type: `bar`,
stacked: true, stacked: true,
}, },
}, },