-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Talk with multiple speakers #79
Conversation
loic425
commented
Oct 2, 2024
683bb0b
to
9d88bb6
Compare
9d88bb6
to
fc9c0bf
Compare
@@ -49,19 +52,18 @@ class Talk implements ResourceInterface | |||
private ?int $id = null; | |||
|
|||
#[ORM\Column(length: 255)] | |||
#[NotBlank] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--- public function setTitle(string $title): void
+++ public function setTitle(?string $title): void
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, you are right.
->add('conference', EntityType::class, [ | ||
'class' => Conference::class, | ||
'choice_label' => 'name', | ||
'placeholder' => 'Select a conference', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'placeholder' => 'Select a conference', | |
'placeholder' => 'app.form.talk.conference.placeholder', |
'allow_add' => true, | ||
'allow_delete' => true, | ||
'by_reference' => false, | ||
'label' => 'app.ui.speakers', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'label' => 'app.ui.speakers', | |
'label' => 'app.form.talk.speakers', |
Co-authored-by: Dmitri Perunov <[email protected]>
dc88740
to
335a3f4
Compare