fix(editor): 新增的组件如果没有初始化left值,会导致无法通过键盘方向键左右移动

fix #468
This commit is contained in:
roymondchen 2022-12-30 16:33:38 +08:00
parent a41a5b3ad4
commit 3b30d89956

View File

@ -110,10 +110,16 @@ const getMiddleTop = (node: MNode, parentNode: MNode, stage: StageCore | null) =
export const getInitPositionStyle = (style: Record<string, any> = {}, layout: Layout) => {
if (layout === Layout.ABSOLUTE) {
return {
const newStyle: Record<string, any> = {
...style,
position: 'absolute',
};
if (typeof newStyle.left === 'undefined' && typeof newStyle.right === 'undefined') {
newStyle.left = 0;
}
return newStyle;
}
if (layout === Layout.RELATIVE) {