0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-21 18:09:02 +01:00

Remove forced capitalization of site name on admin dashboard (#12601)

Fixes #12592
This commit is contained in:
Matt Westcott 2024-11-19 14:55:27 +00:00
parent f0d3edfad6
commit f833a2f520
3 changed files with 3 additions and 1 deletions

View File

@ -57,6 +57,7 @@ Changelog
* Fix: Restore ability to upload profile picture through account settings (Sage Abdullah)
* Fix: Correctly handle `ImageChooserBlock` to `ImageBlock` data conversions where all inputs to `bulk_to_python` are null (Storm Heg, Matt Westcott)
* Fix: Improve spacing of page / collection permissions table in Group settings (Sage Abdullah)
* Fix: Remove forced capitalization of site name on admin dashboard (Thibaud Colas)
* Docs: Reword `BlogTagIndexPage` example for clarity (Clifford Gama)
* Docs: Change title of blog index page in tutorial to avoid slug issues (Thibaud Colas)
* Docs: Fix `wagtailcache` and `wagtailpagecache` examples to not use quotes for the `fragment_name` (Shiv)

View File

@ -17,6 +17,7 @@ depth: 1
* Restore ability to upload profile picture through account settings (Sage Abdullah)
* Correctly handle `ImageChooserBlock` to `ImageBlock` data conversions where all inputs to `bulk_to_python` are null (Storm Heg, Matt Westcott)
* Improve spacing of page / collection permissions table in Group settings (Sage Abdullah)
* Remove forced capitalization of site name on admin dashboard (Thibaud Colas)
### Documentation

View File

@ -8,7 +8,7 @@
{% block content %}
{% fragment as header_title %}
{% block branding_welcome %}{{ site_name|title }}{% endblock %}
{% block branding_welcome %}{{ site_name }}{% endblock %}
{% endfragment %}
{% component upgrade_notification %}