@guo514360255/antd-lib 1.4.20 → 1.4.21
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.
|
@@ -288,7 +288,9 @@ var CustomFormModal = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
288
288
|
className: "listGroupContainer"
|
|
289
289
|
}, /*#__PURE__*/React.createElement("div", {
|
|
290
290
|
className: "listGroupContent"
|
|
291
|
-
}, (formList[item.dataIndex] || []).
|
|
291
|
+
}, (formList[item.dataIndex] || []).filter(function (item) {
|
|
292
|
+
return !item.hideInForm;
|
|
293
|
+
}).map(function (list) {
|
|
292
294
|
var placeholder = getPlaceholder(list.type, list.title);
|
|
293
295
|
return /*#__PURE__*/React.createElement(Form.Item, {
|
|
294
296
|
name: [field.name, list.dataIndex],
|