Removed extra dot in Wagtail version on admin settings menu item

- Fixes #9352
pull/9327/head
Lovelyfin00 (Nutjob) 2022-10-13 21:20:23 +00:00 zatwierdzone przez LB (Ben Johnston)
rodzic 6341d90f56
commit 79d918ed42
4 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -72,6 +72,7 @@ Changelog
* Fix: Ensure that buttons on custom chooser widgets are correctly shown on hover (Thibaud Colas)
* Fix: Add missing asterisk to title field placeholder (Seremba Patrick)
* Fix: Avoid creating an extra rich text block when inserting a new block at the end of the content (Matt Westcott)
* Fix: Removed the extra dot in the Wagtail version shown within the admin settings menu item (Loveth Omokaro)
4.0.3 (xx.xx.xxxx) - IN DEVELOPMENT

Wyświetl plik

@ -639,6 +639,7 @@ Contributors
* Chizoba Nweke
* Seremba Patrick
* Ruqouyyah Muhammad
* Loveth Omokaro
Translators

Wyświetl plik

@ -97,6 +97,7 @@ This feature was developed by Karl Hobley and Matt Westcott.
* Ensure that buttons on custom chooser widgets are correctly shown on hover (Thibaud Colas)
* Add missing asterisk to title field placeholder (Seremba Patrick)
* Avoid creating an extra rich text block when inserting a new block at the end of the content (Matt Westcott)
* Removed the extra dot in the Wagtail version shown within the admin settings menu item (Loveth Omokaro)
## Upgrade considerations

Wyświetl plik

@ -102,7 +102,7 @@ class SettingsMenuItem(SubmenuMenuItem):
self.menu.render_component(request),
icon_name=self.icon_name,
classnames=self.classnames,
footer_text="Wagtail v." + __version__,
footer_text="Wagtail v" + __version__,
)