From 3816d68e188a6aae7d73f87d81e3e6d6cdeeafe3 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Mon, 18 Sep 2023 15:16:26 +0200 Subject: [PATCH] add isCanceledAccompanyingPeriod field to form --- src/Bundle/ChillPersonBundle/Form/ClosingMotiveType.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Bundle/ChillPersonBundle/Form/ClosingMotiveType.php b/src/Bundle/ChillPersonBundle/Form/ClosingMotiveType.php index 84081fdd5..251044e9e 100644 --- a/src/Bundle/ChillPersonBundle/Form/ClosingMotiveType.php +++ b/src/Bundle/ChillPersonBundle/Form/ClosingMotiveType.php @@ -57,6 +57,7 @@ class ClosingMotiveType extends AbstractType ]) ->add('isCanceledAccompanyingPeriod', CheckboxType::class, [ 'label' => $this->translator->trans('Consider canceled'), + 'required' => false, 'help' => $this->translator->trans('Canceled parcours help') ]); }