Skip to content

Commit fb3059a

Browse files
authored
fix fieldcollection assignment, see #375 (#376)
1 parent a821464 commit fb3059a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

UPGRADE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Upgrade Notes
22

3+
## Version 4.3.1
4+
- **[BUGFIX]**: Fix field collection assignment [#375](https://github.com/dachcom-digital/pimcore-formbuilder/issues/375)
5+
36
## Version 4.3.0
47
- **[ENHANCEMENT]**: Use Flysystem for Storage [#334](https://github.com/dachcom-digital/pimcore-formbuilder/issues/334)
58
- Remove `PIMCORE_SYSTEM_TEMP_DIRECTORY/formbuilder-cache` as it is no longer needed

src/FormBuilderBundle/OutputWorkflow/Channel/Object/AbstractObjectResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ protected function appendToFieldCollection(DataObject\Concrete $object, string $
268268
$fieldDefinition = $this->findMapDefinition($fieldMapping, $fieldName);
269269

270270
if ($fieldDefinition === false) {
271-
return;
271+
continue;
272272
}
273273

274274
$this->assignChildDataToObject($fieldCollection, $fieldDefinition, $fieldValue);

0 commit comments

Comments
 (0)