storedObject: add title in form twig and in activity show

This commit is contained in:
nobohan
2022-05-25 17:30:26 +02:00
parent e8cf7ae8e1
commit 60c163ae9d
3 changed files with 9 additions and 6 deletions

View File

@@ -68,7 +68,9 @@ class StoredObjectType extends AbstractType
if ($options['has_title']) {
$builder
->add('title', TextType::class);
->add('title', TextType::class, [
'label' => 'Title',
]);
}
}