Skip to content

Commit

Permalink
Change label required for choice pagepart (#1934)
Browse files Browse the repository at this point in the history
[FormBundle] Change label required for choice pagepart
  • Loading branch information
dannyvw authored and Devolicious committed Apr 20, 2018
1 parent 3d838b1 commit df78b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kunstmaan/FormBundle/Form/ChoicePagePartAdminType.php
Expand Up @@ -24,7 +24,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
$builder
->add('label', TextType::class, array(
'label' => 'kuma_form.form.choice_page_part.label.label',
'required' => false,
'required' => true,
))
->add('required', CheckboxType::class, array(
'label' => 'kuma_form.form.choice_page_part.required.label',
Expand Down

0 comments on commit df78b08

Please sign in to comment.