-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Builds should not define a shortened config version #572
Comments
Reinmar
added a commit
to ckeditor/ckeditor5-build-classic
that referenced
this issue
Sep 30, 2017
…ng preconfigured toolbar items. See ckeditor/ckeditor5#572.
Of course, if we configure toolbar items through |
Reinmar
added a commit
to ckeditor/ckeditor5-build-classic
that referenced
this issue
Sep 30, 2017
…ng preconfigured toolbar items. See ckeditor/ckeditor5#572.
Reinmar
added a commit
to ckeditor/ckeditor5-build-balloon
that referenced
this issue
Sep 30, 2017
…ng preconfigured toolbar items. See ckeditor/ckeditor5#572.
Reinmar
added a commit
to ckeditor/ckeditor5-build-inline
that referenced
this issue
Sep 30, 2017
…ng preconfigured toolbar items. See ckeditor/ckeditor5#572.
JDinABox
pushed a commit
to JDinABox/ckeditor5-build-markdown
that referenced
this issue
Sep 6, 2021
…ng preconfigured toolbar items. See ckeditor/ckeditor5#572.
rivernews
pushed a commit
to rivernews/ckeditor5-build-balloon-2022
that referenced
this issue
Dec 31, 2021
…ng preconfigured toolbar items. See ckeditor/ckeditor5#572.
fl01337
pushed a commit
to fl01337/ckeditor-5-build-inline
that referenced
this issue
May 19, 2022
…ng preconfigured toolbar items. See ckeditor/ckeditor5#572.
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
I tried to create an editor (using the classic build):
Which didn't work well because no toolbar items were rendered. This is because the build specifies
config.toolbar = [ 'item1', 'item2' ... ]
so setting that to the object format overrides the value completely.Instead, if the build will configure
config.toolbar.items = [ ... ]
everything will work fine.The text was updated successfully, but these errors were encountered: