fix(editor): select配置项无法清空

This commit is contained in:
roymondchen 2025-01-03 17:28:57 +08:00
parent 7b0a476677
commit 833dbcd8b4

View File

@ -527,8 +527,8 @@ class Editor extends BaseService {
let newConfig = await this.toggleFixedPosition(toRaw(config), node, root);
newConfig = mergeWith(cloneDeep(node), newConfig, (objValue, srcValue, key) => {
if (typeof srcValue === 'undefined' && Object.hasOwn(newConfig, key)) {
newConfig = mergeWith(cloneDeep(node), newConfig, (objValue, srcValue, key, object: any, source: any) => {
if (typeof srcValue === 'undefined' && Object.hasOwn(source, key)) {
return '';
}