kopia lustrzana https://github.com/wagtail/wagtail
Fix missing comma in Draftail docs code
rodzic
47465197a9
commit
08ea980410
|
@ -12,6 +12,7 @@ Changelog
|
||||||
* Collection listings are now ordered by name (Seb Brown)
|
* Collection listings are now ordered by name (Seb Brown)
|
||||||
* Added `file_hash` field to documents (Karl Hobley, Dan Braghis)
|
* Added `file_hash` field to documents (Karl Hobley, Dan Braghis)
|
||||||
* Added last login to the user overview (Noah B Johnson)
|
* Added last login to the user overview (Noah B Johnson)
|
||||||
|
* Changed design of image editing page (Janneke Janssen, Ben Enright)
|
||||||
* Fix: Query objects returned from `PageQuerySet.type_q` can now be merged with `|` (Brady Moe)
|
* Fix: Query objects returned from `PageQuerySet.type_q` can now be merged with `|` (Brady Moe)
|
||||||
* Fix: Add `rel="noopener noreferrer"` to target blank links (Anselm Bradford)
|
* Fix: Add `rel="noopener noreferrer"` to target blank links (Anselm Bradford)
|
||||||
* Fix: Additional fields on custom document models now show on the multiple document upload view (Robert Rollins, Sergey Fedoseev)
|
* Fix: Additional fields on custom document models now show on the multiple document upload view (Robert Rollins, Sergey Fedoseev)
|
||||||
|
@ -20,7 +21,7 @@ Changelog
|
||||||
* Fix: Allow nav menu to take up all available space instead of scrolling (Meteor0id)
|
* Fix: Allow nav menu to take up all available space instead of scrolling (Meteor0id)
|
||||||
* Fix: Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey)
|
* Fix: Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey)
|
||||||
* Fix: Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen)
|
* Fix: Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen)
|
||||||
* Changed design of image editing page (Janneke Janssen, Ben Enright)
|
* Fix: Missing comma in Draftail documentation (Alex Gleason)
|
||||||
|
|
||||||
|
|
||||||
2.3 LTS (23.10.2018)
|
2.3 LTS (23.10.2018)
|
||||||
|
|
|
@ -183,7 +183,7 @@ In order to achieve this, we start with registering the rich text feature like f
|
||||||
features.register_editor_plugin(
|
features.register_editor_plugin(
|
||||||
'draftail', feature_name, draftail_features.EntityFeature(
|
'draftail', feature_name, draftail_features.EntityFeature(
|
||||||
control,
|
control,
|
||||||
js=['stock.js']
|
js=['stock.js'],
|
||||||
css={'all': ['stock.css']}
|
css={'all': ['stock.css']}
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
@ -45,6 +45,7 @@ Bug fixes
|
||||||
* Users without the edit permission no longer see "Edit" links in list of pages waiting for moderation (Justin Focus, Fedor Selitsky)
|
* Users without the edit permission no longer see "Edit" links in list of pages waiting for moderation (Justin Focus, Fedor Selitsky)
|
||||||
* Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey)
|
* Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey)
|
||||||
* Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen)
|
* Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen)
|
||||||
|
* Fix: Missing comma in Draftail documentation (Alex Gleason)
|
||||||
|
|
||||||
|
|
||||||
Upgrade considerations
|
Upgrade considerations
|
||||||
|
|
Ładowanie…
Reference in New Issue