Fix missing comma in Draftail docs code

pull/4905/head
Alex Gleason 2018-11-14 13:19:45 -05:00 zatwierdzone przez Andy Chosak
rodzic 47465197a9
commit 08ea980410
3 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -12,6 +12,7 @@ Changelog
* Collection listings are now ordered by name (Seb Brown)
* Added `file_hash` field to documents (Karl Hobley, Dan Braghis)
* 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: 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)
@ -20,7 +21,7 @@ Changelog
* 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: 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)

Wyświetl plik

@ -183,7 +183,7 @@ In order to achieve this, we start with registering the rich text feature like f
features.register_editor_plugin(
'draftail', feature_name, draftail_features.EntityFeature(
control,
js=['stock.js']
js=['stock.js'],
css={'all': ['stock.css']}
)
)

Wyświetl plik

@ -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)
* 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)
* Fix: Missing comma in Draftail documentation (Alex Gleason)
Upgrade considerations