From f36638e53eafd3d2e1c4c0e7b1dc9fa39730833b Mon Sep 17 00:00:00 2001 From: DDD1542 Date: Tue, 17 Mar 2026 22:13:15 +0900 Subject: [PATCH] 22 --- .../v2-split-panel-layout/SplitPanelLayoutComponent.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx b/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx index 0b2002f9..8467154a 100644 --- a/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx +++ b/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx @@ -2547,7 +2547,7 @@ export const SplitPanelLayoutComponent: React.FC return; } - if (onUpdateComponent) { + if (isDesignMode && onUpdateComponent) { // 디자인 모드: config에 영구 저장 const rightPanel = componentConfig.rightPanel || {}; if (source === "main") { @@ -2633,6 +2633,7 @@ export const SplitPanelLayoutComponent: React.FC componentConfig, component, onUpdateComponent, + isDesignMode, handleRightColumnDragEnd, setRuntimeColumnOrder, ],