diff --git a/core/frontend/src/components/canvas/components/editor/Preview.vue b/core/frontend/src/components/canvas/components/editor/Preview.vue index 927ccbd25f..845aaec10f 100644 --- a/core/frontend/src/components/canvas/components/editor/Preview.vue +++ b/core/frontend/src/components/canvas/components/editor/Preview.vue @@ -843,7 +843,7 @@ export default { if (this.componentData) { const componentData = deepCopy(this.componentData) componentData.forEach(component => { - if (component.type === 'custom') { + if (component.type === 'custom' && !this._isMobile) { const sourceComponent = this.findSourceComponent(component.id) if (sourceComponent?.style) { component.style = deepCopy(this.findSourceComponent(component.id).style)