Skip to content

Commit

Permalink
fix: search 意外执行valueResolve的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed Jun 21, 2023
1 parent 3479f80 commit b2ba83d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fast-crud/src/use/use-expose.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export function useExpose(props: UseExposeProps): UseExposeRet {
if (crudBinding.value?.search?.columns) {
crudExpose.doValueResolve({ form: searchFormData }, toRaw(crudBinding.value.search.columns));
}
crudExpose.doValueResolve({ form: searchFormData });
//crudExpose.doValueResolve({ form: searchFormData });

const sort = crudBinding.value.table.sort || {};
const query: PageQuery = { page, form: searchFormData, sort };
Expand Down

0 comments on commit b2ba83d

Please sign in to comment.