Skip to content

Commit

Permalink
Fix default fields builder config
Browse files Browse the repository at this point in the history
  • Loading branch information
mcg-web committed Apr 4, 2019
1 parent 29f953c commit c0a04cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config/Processor/BuilderProcessor.php
Expand Up @@ -175,7 +175,7 @@ private static function processFieldsBuilders(array $builders, array &$reservedT

foreach ($builders as $builder) {
$builderName = $builder['builder'];
$builderConfig = $builder['builderConfig'] ?? null;
$builderConfig = $builder['builderConfig'] ?? [];

$mapping = self::getFieldBuilderMapping($builderName, self::BUILDER_FIELDS_TYPE, $builderConfig, $reservedTypesMap);

Expand Down

0 comments on commit c0a04cd

Please sign in to comment.