Skip to content

Commit

Permalink
Merge pull request #485 from clddup/fix/search-resetFields-error
Browse files Browse the repository at this point in the history
fix: 修复 search组件的收起展开 和重置 Bug  #441
  • Loading branch information
kailong321200875 authored Jun 17, 2024
2 parents 12eca8f + 9a5c7bc commit 8868025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form/src/Form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 8868025

Please sign in to comment.