Skip to content

Commit

Permalink
fix: Behat tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nattfarinn committed Jun 30, 2020
1 parent f588780 commit dc9609c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/Form/Type/Content/BaseContentType.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public function buildForm(FormBuilderInterface $builder, array $options)
'languageCode' => $options['languageCode'],
'mainLanguageCode' => $options['mainLanguageCode'],
'content' => $options['content'] ?? null,
'contentCreateStruct' => $options['contentCreateStruct'],
'contentUpdateStruct' => $options['contentUpdateStruct'],
'contentCreateStruct' => $options['contentCreateStruct'] ?? null,
'contentUpdateStruct' => $options['contentUpdateStruct'] ?? null,
],
])
->add('redirectUrlAfterPublish', HiddenType::class, [
Expand Down

0 comments on commit dc9609c

Please # to comment.