From 7bc44b8b3e88950fd2ff553f41dd0a01198f27ca Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 09 十一月 2023 15:06:41 +0800 Subject: [PATCH] 2023-11-09 --- src/tabviews/custom/popview/index.jsx | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/tabviews/custom/popview/index.jsx b/src/tabviews/custom/popview/index.jsx index aa089dc..41b1473 100644 --- a/src/tabviews/custom/popview/index.jsx +++ b/src/tabviews/custom/popview/index.jsx @@ -736,12 +736,8 @@ } else if (component.type === 'group') { component.components = this.formatSetting(component.components, params, regs, balMap) return component - } else if (component.wrap && component.wrap.datatype === 'public') { - component.setting.useMSearch = false - component.setting.sync = 'false' - - return component - } else if (component.wrap && component.wrap.datatype === 'static') { + } else if (component.wrap && (component.wrap.datatype === 'static' || component.wrap.datatype === 'public')) { + component.wrap.datatype = 'static' component.format = '' component.setting = component.setting || {} component.setting.useMSearch = false -- Gitblit v1.8.0