1
0
forked from baron/baron-sso

상태 뱃지 스타일(UI) 통일

This commit is contained in:
2026-02-27 11:23:06 +09:00
parent f6647230f7
commit c584c28f1a
5 changed files with 15 additions and 13 deletions

View File

@@ -263,7 +263,7 @@ function ClientGeneralPage() {
<div className="space-y-2">
<div className="flex flex-wrap items-center gap-2 text-sm text-muted-foreground">
<Link to="/clients" className="text-primary hover:underline">
{t("ui.dev.clients.general.breadcrumb.section", "Applications")}
{t("ui.dev.clients.general.breadcrumb.section", "Connected Applications")}
</Link>
<span>/</span>
<span className="text-foreground">{displayName}</span>
@@ -276,7 +276,7 @@ function ClientGeneralPage() {
</div>
{!isCreate && (
<Badge
variant={status === "active" ? "success" : "muted"}
variant={status === "active" ? "info" : "muted"}
className="px-3 py-1 text-xs uppercase"
>
{status === "active"
@@ -292,7 +292,7 @@ function ClientGeneralPage() {
to={`/clients/${clientId}`}
className="whitespace-nowrap border-b-2 border-transparent text-muted-foreground hover:text-foreground"
>
{t("ui.dev.clients.details.tab.connection", "Connection")}
{t("ui.dev.clients.details.tab.connection", "Federation")}
</Link>
<Link
to={`/clients/${clientId}/consents`}