ronds-metadata 1.1.67 → 1.1.68
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.
@@ -232,7 +232,7 @@ var TableArray = function TableArray(props) {
|
|
232
232
|
return /*#__PURE__*/React.createElement("div", {
|
233
233
|
style: {
|
234
234
|
width: '100%',
|
235
|
-
height: "".concat(rowNumber *
|
235
|
+
height: addButtonHidden ? "".concat(rowNumber * 33 + 50, "px") : "".concat(rowNumber * 33 + 50 + 40, "px")
|
236
236
|
}
|
237
237
|
}, /*#__PURE__*/React.createElement(_Form.Item, {
|
238
238
|
name: name,
|
@@ -256,7 +256,7 @@ var TableArray = function TableArray(props) {
|
|
256
256
|
tableProps: {
|
257
257
|
scroll: {
|
258
258
|
x: '100%',
|
259
|
-
y: "".concat(rowNumber *
|
259
|
+
y: "".concat(rowNumber * 33 + 50, "px")
|
260
260
|
}
|
261
261
|
}
|
262
262
|
})));
|