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:
@@ -195,7 +195,7 @@ function AuditLogsPage() {
|
|||||||
</CardTitle>
|
</CardTitle>
|
||||||
<CardDescription>
|
<CardDescription>
|
||||||
{t("msg.admin.audit.registry.count", "총 {{count}}개 로그", {
|
{t("msg.admin.audit.registry.count", "총 {{count}}개 로그", {
|
||||||
count: data?.pages[0]?.total ?? 0,
|
count: logs.length,
|
||||||
})}
|
})}
|
||||||
</CardDescription>
|
</CardDescription>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -441,6 +441,8 @@ export type BulkUserItem = {
|
|||||||
role?: string;
|
role?: string;
|
||||||
tenantSlug?: string;
|
tenantSlug?: string;
|
||||||
department?: string;
|
department?: string;
|
||||||
|
position?: string;
|
||||||
|
jobTitle?: string;
|
||||||
metadata: Record<string, string>;
|
metadata: Record<string, string>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user