This commit is contained in:
DDD1542 2026-03-17 22:13:15 +09:00
parent 12d4d2a8b1
commit f36638e53e
1 changed files with 2 additions and 1 deletions

View File

@ -2547,7 +2547,7 @@ export const SplitPanelLayoutComponent: React.FC<SplitPanelLayoutComponentProps>
return; return;
} }
if (onUpdateComponent) { if (isDesignMode && onUpdateComponent) {
// 디자인 모드: config에 영구 저장 // 디자인 모드: config에 영구 저장
const rightPanel = componentConfig.rightPanel || {}; const rightPanel = componentConfig.rightPanel || {};
if (source === "main") { if (source === "main") {
@ -2633,6 +2633,7 @@ export const SplitPanelLayoutComponent: React.FC<SplitPanelLayoutComponentProps>
componentConfig, componentConfig,
component, component,
onUpdateComponent, onUpdateComponent,
isDesignMode,
handleRightColumnDragEnd, handleRightColumnDragEnd,
setRuntimeColumnOrder, setRuntimeColumnOrder,
], ],