diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 14de6ab3ee..e8c98f162c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) diff --git a/docs/releases/6.3.1.md b/docs/releases/6.3.1.md index 7acfd8e025..cbdb27eb69 100644 --- a/docs/releases/6.3.1.md +++ b/docs/releases/6.3.1.md @@ -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 diff --git a/wagtail/admin/templates/wagtailadmin/home.html b/wagtail/admin/templates/wagtailadmin/home.html index ae65ddd592..fa3166561f 100644 --- a/wagtail/admin/templates/wagtailadmin/home.html +++ b/wagtail/admin/templates/wagtailadmin/home.html @@ -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 %}