1
0
forked from baron/baron-sso

클라이언트 관리 페이지 ui/ux 수정

This commit is contained in:
2026-01-29 17:05:16 +09:00
parent 3e2ceff692
commit 765bf67cab
5 changed files with 341 additions and 359 deletions

View File

@@ -284,16 +284,15 @@ function ClientsPage() {
<TableCell className="text-right">
<div className="flex items-center justify-end gap-2">
<Button variant="ghost" size="sm" asChild>
<Link to={`/clients/${client.id}`}></Link>
<Link to={`/clients/${client.id}`}>Edit</Link>
</Button>
<Button
variant="ghost"
size="icon"
className="h-8 w-8 text-muted-foreground hover:text-destructive"
aria-label="Delete client"
size="sm"
className="text-muted-foreground hover:text-destructive"
onClick={() => deleteMutation.mutate(client.id)}
>
<Activity className="h-4 w-4" />
Delete
</Button>
</div>
</TableCell>