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,