@zat-design/sisyphus-react 3.13.11 → 3.13.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -305,7 +305,7 @@ var RenderField = function RenderField(_ref) {
|
|
305
305
|
var debounceValidate = function debounceValidate() {
|
306
306
|
var validateFieldKeys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
307
307
|
setTimeout(function () {
|
308
|
-
form.validateFields(
|
308
|
+
form.validateFields(validateFieldKeys);
|
309
309
|
}, 100);
|
310
310
|
};
|
311
311
|
// 单元格更新数据时,加个防抖,防止更新频率过快,卡顿
|
@@ -313,7 +313,7 @@ var RenderField = function RenderField(_ref) {
|
|
313
313
|
var debounceValidate = function debounceValidate() {
|
314
314
|
var validateFieldKeys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
315
315
|
setTimeout(function () {
|
316
|
-
form.validateFields(
|
316
|
+
form.validateFields(validateFieldKeys);
|
317
317
|
}, 100);
|
318
318
|
};
|
319
319
|
// 单元格更新数据时,加个防抖,防止更新频率过快,卡顿
|