feat: add filtering for characters with null origin data
All checks were successful
Build Docker Image / build (push) Successful in 1m24s
All checks were successful
Build Docker Image / build (push) Successful in 1m24s
This commit is contained in:
@@ -12,6 +12,9 @@ export async function load() {
|
||||
// Filter out characters that have no status data
|
||||
characters = characters.filter(char => char.status !== null);
|
||||
|
||||
// Filter out characters that have no origin data
|
||||
characters = characters.filter(char => char.origin !== null);
|
||||
|
||||
// Load column visibility config
|
||||
const columnConfig = await db
|
||||
.select()
|
||||
|
||||
Reference in New Issue
Block a user