1
0
forked from baron/baron-sso

앱 유형 명칭 Private/PKCE 반영 및 UI 로직 업데이트

This commit is contained in:
2026-02-23 13:14:02 +09:00
parent 5dd5dd1086
commit 2624931a7f
3 changed files with 21 additions and 21 deletions

View File

@@ -266,7 +266,7 @@ function ClientsPage() {
<TableCell>
<div className="flex items-center gap-3">
<div className="flex h-9 w-9 items-center justify-center rounded-lg bg-primary/10 text-primary">
{client.type === "confidential" ? (
{client.type === "private" ? (
<ServerCog className="h-4 w-4" />
) : (
<ShieldHalf className="h-4 w-4" />
@@ -310,15 +310,15 @@ function ClientsPage() {
<TableCell>
<Badge
variant={
client.type === "confidential" ? "success" : "muted"
client.type === "private" ? "success" : "muted"
}
>
{client.type === "confidential"
{client.type === "private"
? t(
"ui.dev.clients.type.confidential",
"기밀(Confidential)",
"ui.dev.clients.type.private",
"Private",
)
: t("ui.dev.clients.type.public", "Public")}
: t("ui.dev.clients.type.pkce", "PKCE")}
</Badge>
</TableCell>
<TableCell>