diff --git a/src/runtime/components/legacy/renderer-legacy.js b/src/runtime/components/legacy/renderer-legacy.js index f8576a9188..cdc399e1e7 100644 --- a/src/runtime/components/legacy/renderer-legacy.js +++ b/src/runtime/components/legacy/renderer-legacy.js @@ -65,7 +65,9 @@ function createRendererFunc(templateRenderFunc, componentProps) { customEvents, ownerComponentId ); - if (input.widgetProps) { + if (isSplit) { + component.input = null; + } else if (input.widgetProps) { component.input = input.widgetProps; } } else { @@ -139,7 +141,10 @@ function createRendererFunc(templateRenderFunc, componentProps) { customEvents, ownerComponentId ); - if (input.widgetProps) { + + if (isSplit) { + component.input = null; + } else if (input.widgetProps) { component.input = input.widgetProps; } Object.assign(component, oldComponent);