Optionally showing aliases in actors admin.

This commit is contained in:
2026-07-08 03:47:06 +02:00
parent dd344ecc3f
commit 2d0983f4d1
4 changed files with 36 additions and 11 deletions

View File

@@ -27,7 +27,8 @@ export function curateActorsQuery(query) {
weight: query.weight?.split(',').map((weight) => Number(weight)),
requireAvatar: query.avatar,
stashId: Number(query.stashId) || null,
isGlobal: !!query.global,
isGlobal: Object.hasOwn(query, 'global'),
includeAliased: Object.hasOwn(query, 'alias'),
};
}