💄 some last UI fixes

This commit is contained in:
Fred KISSIE
2026-08-24 20:39:30 +02:00
parent 28b32fe6f7
commit 4ddf36ebcc
3 changed files with 10 additions and 4 deletions
@@ -155,7 +155,9 @@ function getWhere(data: Q) {
data.action !== undefined
? eq(accessAuditLog.action, data.action)
: undefined,
data.ip ? inArray(accessAuditLog.ip, data.ip) : undefined
data.ip && data.ip.length > 0
? inArray(accessAuditLog.ip, data.ip)
: undefined
);
}