ui 수정 및 시현할 기능 업데이트
This commit is contained in:
@@ -223,12 +223,12 @@ export const ButtonDataflowConfigPanel: React.FC<ButtonDataflowConfigPanelProps>
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
{/* 🔥 제어관리 활성화 스위치 */}
|
||||
<div className="flex items-center justify-between rounded-lg border bg-blue-50 p-4">
|
||||
<div className="flex items-center justify-between rounded-lg border bg-accent p-4">
|
||||
<div className="flex items-center space-x-2">
|
||||
<Settings className="h-4 w-4 text-blue-600" />
|
||||
<Settings className="h-4 w-4 text-primary" />
|
||||
<div>
|
||||
<Label className="text-sm font-medium">📊 제어관리 기능</Label>
|
||||
<p className="mt-1 text-xs text-gray-600">버튼 클릭 시 데이터 흐름을 자동으로 제어합니다</p>
|
||||
<p className="mt-1 text-xs text-muted-foreground">버튼 클릭 시 데이터 흐름을 자동으로 제어합니다</p>
|
||||
</div>
|
||||
</div>
|
||||
<Switch
|
||||
@@ -283,10 +283,10 @@ export const ButtonDataflowConfigPanel: React.FC<ButtonDataflowConfigPanelProps>
|
||||
)}
|
||||
|
||||
{config.enableDataflowControl && (
|
||||
<div className="space-y-6 border-l-2 border-blue-200 pl-4">
|
||||
<div className="space-y-6 border-l-2 border-primary/20 pl-4">
|
||||
{/* 현재 액션 정보 (간소화) */}
|
||||
<div className="rounded bg-gray-100 p-2">
|
||||
<p className="text-xs text-gray-600">
|
||||
<p className="text-xs text-muted-foreground">
|
||||
<strong>{getActionDisplayName(config.actionType || "save")}</strong> 액션에 제어관리 연결
|
||||
</p>
|
||||
</div>
|
||||
@@ -481,7 +481,7 @@ export const ButtonDataflowConfigPanel: React.FC<ButtonDataflowConfigPanelProps>
|
||||
|
||||
{/* 선택된 관계 간단 정보 */}
|
||||
{selectedRelationship && (
|
||||
<div className="mt-2 rounded border bg-blue-50 p-2">
|
||||
<div className="mt-2 rounded border bg-accent p-2">
|
||||
<p className="text-xs text-blue-700">
|
||||
<strong>{selectedRelationship.sourceTable}</strong> →{" "}
|
||||
<strong>{selectedRelationship.targetTable}</strong>
|
||||
|
||||
Reference in New Issue
Block a user