ui 수정 및 시현할 기능 업데이트

This commit is contained in:
leeheejin
2025-10-02 14:34:15 +09:00
parent 2c0dca08b4
commit 3fa410cbe4
168 changed files with 1545 additions and 1066 deletions

View File

@@ -33,8 +33,8 @@ export function UserStatusConfirmDialog({
const currentStatusText = USER_STATUS_LABELS[user.status as keyof typeof USER_STATUS_LABELS] || user.status;
const newStatusText = USER_STATUS_LABELS[newStatus as keyof typeof USER_STATUS_LABELS] || newStatus;
const currentStatusColor = user.status === "active" ? "text-blue-600" : "text-gray-600";
const newStatusColor = newStatus === "active" ? "text-blue-600" : "text-gray-600";
const currentStatusColor = user.status === "active" ? "text-primary" : "text-muted-foreground";
const newStatusColor = newStatus === "active" ? "text-primary" : "text-muted-foreground";
return (
<Dialog open={isOpen} onOpenChange={(open) => !open && onCancel()}>
@@ -67,7 +67,7 @@ export function UserStatusConfirmDialog({
<Button variant="outline" onClick={onCancel}>
</Button>
<Button onClick={onConfirm} className={newStatus === "active" ? "bg-blue-500 hover:bg-blue-600" : ""}>
<Button onClick={onConfirm} variant="default">
</Button>
</DialogFooter>