From d27b0f274f2e505b0c3a4ab3e6742bfb1e1e4f45 Mon Sep 17 00:00:00 2001 From: rustmailer Date: Sun, 9 Aug 2026 17:44:23 +0800 Subject: [PATCH] update --- web/src/features/audit-log/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/features/audit-log/index.tsx b/web/src/features/audit-log/index.tsx index 7f88e2f..b8451c6 100644 --- a/web/src/features/audit-log/index.tsx +++ b/web/src/features/audit-log/index.tsx @@ -249,7 +249,7 @@ export default function AuditLog() { }) const userOptions = [ - { value: 'all', label: t('audit.allTypes', 'All') }, + { value: 'all', label: t('audit.allUsers', 'All') }, ...(users ?? []).map((u) => ({ value: u.username, label: `${u.username}${u.email ? ` ยท ${u.email}` : ''}`, @@ -257,7 +257,7 @@ export default function AuditLog() { ] const accountOptions = [ - { value: 'all', label: t('audit.allTypes', 'All') }, + { value: 'all', label: t('audit.allAccounts', 'All') }, ...(accounts ?? []).map((a) => ({ value: String(a.id), label: a.email,