diff --git a/packages/editor/src/utils/editor.ts b/packages/editor/src/utils/editor.ts index 99016aa1..d91125b3 100644 --- a/packages/editor/src/utils/editor.ts +++ b/packages/editor/src/utils/editor.ts @@ -110,10 +110,16 @@ const getMiddleTop = (node: MNode, parentNode: MNode, stage: StageCore | null) = export const getInitPositionStyle = (style: Record = {}, layout: Layout) => { if (layout === Layout.ABSOLUTE) { - return { + const newStyle: Record = { ...style, position: 'absolute', }; + + if (typeof newStyle.left === 'undefined' && typeof newStyle.right === 'undefined') { + newStyle.left = 0; + } + + return newStyle; } if (layout === Layout.RELATIVE) {