privateCommentType adjusted

This commit is contained in:
Julie Lenaerts 2022-04-27 11:50:14 +02:00
parent e8dcb45abb
commit 3ed2b36057

View File

@ -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);
}