Skip to content

Commit

Permalink
Merge pull request #95 from Veriteworks/fix-customer-export
Browse files Browse the repository at this point in the history
Fixed customer export error on customer grid page.
  • Loading branch information
HirokazuNishi authored Aug 29, 2019
2 parents e3a0cb8 + 7908a01 commit 2199a42
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ class PartiallyConfiguredUiComponent
public function afterGetChildComponents(UiComponentInterface $component, array $children)
{
$configuredChildren = [];
foreach ($children as $child) {
foreach ($children as $key => $child) {
if ($child instanceof Field && null === $child->getData('config/formElement')) {
continue;
}
$configuredChildren[] = $child;
$configuredChildren[$key] = $child;
}
return $configuredChildren;
}
Expand Down

0 comments on commit 2199a42

Please sign in to comment.