feat(editor): 配置组件时将样式中的空配置移除

This commit is contained in:
roymondchen 2025-01-03 17:27:29 +08:00
parent 9e35642879
commit 7b0a476677

View File

@ -124,7 +124,21 @@ const submit = async (v: MNode, eventData?: ContainerChangeEventData) => {
if (!v.id) {
v.id = values.value.id;
}
services?.editorService.update(v, { changeRecords: eventData?.changeRecords });
const newValue: MNode = {
...v,
style: {},
};
if (v.style) {
Object.entries(v.style).forEach(([key, value]) => {
if (value !== '' && newValue.style) {
newValue.style[key] = value;
}
});
}
services?.editorService.update(newValue, { changeRecords: eventData?.changeRecords });
} catch (e: any) {
emit('submit-error', e);
}