Merge pull request #485 from clddup/fix/search-resetFields-error

fix: 修复 search组件的收起展开 和重置 Bug  #441
This commit is contained in:
Archer 2024-06-17 08:41:18 +08:00 committed by GitHub
commit 88680255c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ export default defineComponent({
const { schema = [], isCol } = unref(getProps)
return schema
.filter((v) => !v.remove && !v.hidden)
.filter((v) => !v.remove)
.map((item) => {
// Divider
const isDivider = item.component === 'Divider'