#44: show item name on orderitem editform

This commit is contained in:
lubiana 2024-08-14 20:39:14 +02:00
parent 25b73e7da5
commit c324973d28
No known key found for this signature in database
3 changed files with 49 additions and 6 deletions

View file

@ -14,9 +14,7 @@ final class OrderItemType extends AbstractType
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add(child: 'name', options: [
'data' => $options['name'] ?? '',
])
->add('name')
->add('extras')
->add('createdBy')
;