mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
fix(editor): select配置项无法清空
This commit is contained in:
parent
7b0a476677
commit
833dbcd8b4
@ -527,8 +527,8 @@ class Editor extends BaseService {
|
|||||||
|
|
||||||
let newConfig = await this.toggleFixedPosition(toRaw(config), node, root);
|
let newConfig = await this.toggleFixedPosition(toRaw(config), node, root);
|
||||||
|
|
||||||
newConfig = mergeWith(cloneDeep(node), newConfig, (objValue, srcValue, key) => {
|
newConfig = mergeWith(cloneDeep(node), newConfig, (objValue, srcValue, key, object: any, source: any) => {
|
||||||
if (typeof srcValue === 'undefined' && Object.hasOwn(newConfig, key)) {
|
if (typeof srcValue === 'undefined' && Object.hasOwn(source, key)) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user