We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents afad269 + 4601d42 commit 596329bCopy full SHA for 596329b
packages/table-render/CHANGELOG.md
@@ -1,5 +1,8 @@
1
# Changelog
2
3
+### 1.3.15
4
+- [+] 修复 search schema 被篡改
5
+
6
### 1.3.14
7
- [+] 修复 `refresh` stay 之后 分页数据不更新
8
### 1.3.11
packages/table-render/package.json
@@ -1,6 +1,6 @@
{
"name": "table-render",
- "version": "1.3.14",
+ "version": "1.3.15",
"description": "中后台表格解决方案",
"keywords": [
"TableRender",
packages/table-render/src/components/Search.tsx
@@ -165,7 +165,7 @@ const Search: <RecordType extends object = any>(
165
onFinish,
166
...props,
167
form,
168
- schema: formSchema,
+ schema: cloneDeep(formSchema),
169
widgets: {
170
searchBtn: () => <MySearchBtn {...btnProps} />,
171
...props.widgets,
0 commit comments