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:
parent
f0d3edfad6
commit
f833a2f520
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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 %}
|
||||
|
Loading…
Reference in New Issue
Block a user