From 3ed2b36057c5c413bee7b3b90124a5a21431a465 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Wed, 27 Apr 2022 11:50:14 +0200 Subject: [PATCH] privateCommentType adjusted --- src/Bundle/ChillMainBundle/Form/Type/PrivateCommentType.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Form/Type/PrivateCommentType.php b/src/Bundle/ChillMainBundle/Form/Type/PrivateCommentType.php index 174326d86..6ab166fe9 100644 --- a/src/Bundle/ChillMainBundle/Form/Type/PrivateCommentType.php +++ b/src/Bundle/ChillMainBundle/Form/Type/PrivateCommentType.php @@ -43,7 +43,9 @@ class PrivateCommentType extends AbstractType public function buildForm(FormBuilderInterface $builder, array $options) { $builder - ->add('comments', ChillTextareaType::class) + ->add('comments', ChillTextareaType::class, [ + 'label' => 'private comment' + ]) ->setDataMapper($this->dataMapper); }