Skip to content

Commit

Permalink
fix: 修复 inputTable 列检索同级别存在同名表单项值时搜索框查询条件自动被赋值问题
Browse files Browse the repository at this point in the history
  • Loading branch information
2betop committed Dec 17, 2024
1 parent 856539e commit d885c72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/amis/src/renderers/Table/HeadCellSearchDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export function HeadCellSearchDropDown({
...schema,
type: 'form',
wrapperComponent: 'div',
canAccessSuperData: false,
actions: [
{
type: 'button',
Expand Down Expand Up @@ -210,9 +211,7 @@ export function HeadCellSearchDropDown({
{
render('quick-search-form', formSchema, {
popOverContainer,
data: {
...data
},
data: data,
onSubmit: handleSubmit,
onAction: handleAction
}) as JSX.Element
Expand Down

0 comments on commit d885c72

Please sign in to comment.