@cloudbase/weda-ui 3.7.8 → 3.7.9
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/configs/components/wd-image.d.ts +1 -0
- package/dist/configs/components/wd-image.js +1 -0
- package/dist/configs/index.d.ts +2 -0
- package/dist/configs/type-utils/type-form.js +3 -3
- package/dist/style/index.scss +1 -1
- package/dist/web/components/wd-form-obj/base-form-obj.js +1 -1
- package/package.json +1 -1
|
@@ -124,7 +124,7 @@ export const BaseFormObj = forwardRef(function BaseFormObj(props, ref) {
|
|
|
124
124
|
value = deepClone(objValue);
|
|
125
125
|
// 触发添加操作,则增加一个undefined值
|
|
126
126
|
if (params.type === 'add') {
|
|
127
|
-
value.push(
|
|
127
|
+
value.push(undefined);
|
|
128
128
|
}
|
|
129
129
|
// 触发删除操作,则删除对应索引的值
|
|
130
130
|
if (params.type === 'remove') {
|