Skip to content
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

fix(docs/README): syntax for editor_toolbar_buttons has to be with double brackets #250

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mathieu-coingt
Copy link

@mathieu-coingt mathieu-coingt commented Nov 5, 2024

Sample configuration is currently wrong.
In the form type, you need to define configuration for editor_toolbar_buttons with double brackets.

Before :

$builder->add('myField', WysiwygType::class, [
...
'editor_toolbar_buttons' => ['bold', 'italic', 'underline', ...]
])

After :

$builder->add('myField', WysiwygType::class, [
...
'editor_toolbar_buttons' => [['bold', 'italic', 'underline', ...]]
])

@madamebiz madamebiz added the quick win Easy to pick, everybody will be happy. label Nov 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
quick win Easy to pick, everybody will be happy.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants