lu-lowcode-package-form 0.11.88 → 0.11.89
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/index.cjs.js +236 -236
- package/dist/index.es.js +16466 -16464
- package/package.json +1 -1
- package/src/components/form-container/index.jsx +1 -1
package/package.json
CHANGED
@@ -584,7 +584,7 @@ const FormContainer = forwardRef(({ cols = 1, children, mode = "view" }, ref) =>
|
|
584
584
|
childIdentifier = childIdentifier.split(".")
|
585
585
|
let table_values = getParamValue("fieldsValue", childIdentifier[0], fieldValues, [])
|
586
586
|
if (Array.isArray(table_values) && table_values.length > 0)
|
587
|
-
if (
|
587
|
+
if (typeof targetRowIndex === 'number' && targetRowIndex >= 0) {
|
588
588
|
if (targetRowIndex < table_values.length) {
|
589
589
|
await handleFieldsWithFill(fieldValues, child, [childIdentifier[0], targetRowIndex], componentName, sourceFieldId)
|
590
590
|
}
|