feat(gateway): 接入统一认证中心本地登录

This commit is contained in:
2026-07-12 20:45:35 +08:00
parent f8d766b916
commit 03abc0eab7
10 changed files with 123 additions and 15 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ function WorkspaceOverview(props: { data: ConsoleData }) {
</CardHeader>
<CardContent className="profileGrid">
<InfoItem label="账号" value={owner?.username ?? '-'} />
<InfoItem label="租户" value={owner?.tenantKey ?? 'default'} />
<InfoItem label="租户" value={owner?.tenantKey || owner?.tenantId || 'default'} />
<InfoItem label="身份源" value={owner?.source ?? 'gateway'} />
<InfoItem label="API Key" value={String(props.data.apiKeys.length)} />
</CardContent>