1
0
forked from baron/baron-sso

fix(adminfront): resolve typescript build errors on CI

- Fix missing position and jobTitle properties in BulkUserItem interface
- Fix incorrect reference to undefined total property in AuditLogsPage (reverted to logs.length)
This commit is contained in:
2026-04-10 14:43:56 +09:00
parent ea90327507
commit ec0c6eae26
2 changed files with 3 additions and 1 deletions

View File

@@ -195,7 +195,7 @@ function AuditLogsPage() {
</CardTitle>
<CardDescription>
{t("msg.admin.audit.registry.count", "총 {{count}}개 로그", {
count: data?.pages[0]?.total ?? 0,
count: logs.length,
})}
</CardDescription>
</div>

View File

@@ -441,6 +441,8 @@ export type BulkUserItem = {
role?: string;
tenantSlug?: string;
department?: string;
position?: string;
jobTitle?: string;
metadata: Record<string, string>;
};