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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lu-lowcode-package-form",
3
- "version": "0.11.88",
3
+ "version": "0.11.89",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^4.8.1",
6
6
  "@dnd-kit/core": "^6.1.0",
@@ -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 (targetTableName && typeof targetRowIndex === 'number' && targetRowIndex >= 0) {
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
  }