@guo514360255/antd-lib 1.6.1 → 1.6.2
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.
- package/dist/utils/util.js +2 -1
- package/package.json +1 -1
package/dist/utils/util.js
CHANGED
|
@@ -6,6 +6,7 @@ import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
|
6
6
|
* @Description:
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
import cloneDeep from 'lodash/cloneDeep';
|
|
9
10
|
import isEmpty from 'lodash/isEmpty';
|
|
10
11
|
import isFinite from 'lodash/isFinite';
|
|
11
12
|
import isNil from 'lodash/isNil';
|
|
@@ -116,7 +117,7 @@ export var handleColumnFieldProps = function handleColumnFieldProps(setColumns,
|
|
|
116
117
|
if (column && column.fieldProps) {
|
|
117
118
|
fn(column);
|
|
118
119
|
}
|
|
119
|
-
return s;
|
|
120
|
+
return cloneDeep(s);
|
|
120
121
|
});
|
|
121
122
|
};
|
|
122
123
|
|