kopia lustrzana https://github.com/wagtail/wagtail
Fix server-side caching of the icons sprite
rodzic
8285936d99
commit
9288f3940c
|
@ -53,6 +53,7 @@ Changelog
|
|||
* Fix: Fix timezone handling of `TemplateResponse`s for users with a custom timezone (Stefan Hammer, Sage Abdullah)
|
||||
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||
* Docs: Add code block to make it easier to understand contribution docs (Suyash Singh)
|
||||
* Docs: Add new "Icons" page for icons customisation and reuse across the admin interface (Coen van der Kamp)
|
||||
* Docs: Fix broken formatting for MultiFieldPanel / FieldRowPanel permission kwarg docs (Matt Westcott)
|
||||
|
@ -96,6 +97,7 @@ Changelog
|
|||
* Fix: Fix timezone handling of `TemplateResponse`s for users with a custom timezone (Stefan Hammer, Sage Abdullah)
|
||||
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||
|
||||
|
||||
4.2.1 (13.03.2023)
|
||||
|
@ -274,6 +276,7 @@ Changelog
|
|||
* Fix: Fix timezone handling of `TemplateResponse`s for users with a custom timezone (Stefan Hammer, Sage Abdullah)
|
||||
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||
|
||||
|
||||
4.1.3 (13.03.2023)
|
||||
|
|
|
@ -18,3 +18,4 @@ depth: 1
|
|||
* Fix timezone handling of `TemplateResponse`s for users with a custom timezone (Stefan Hammer, Sage Abdullah)
|
||||
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||
|
|
|
@ -18,3 +18,4 @@ depth: 1
|
|||
* Fix timezone handling of `TemplateResponse`s for users with a custom timezone (Stefan Hammer, Sage Abdullah)
|
||||
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||
|
|
|
@ -70,6 +70,7 @@ Support for adding custom validation logic to StreamField blocks has been formal
|
|||
* Fix timezone handling of `TemplateResponse`s for users with a custom timezone (Stefan Hammer, Sage Abdullah)
|
||||
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||
|
||||
### Documentation
|
||||
|
||||
|
|
|
@ -370,10 +370,10 @@ def icons():
|
|||
.replace("svg", "symbol")
|
||||
)
|
||||
|
||||
_full_sprite_html = render_to_string(
|
||||
_icons_html = render_to_string(
|
||||
"wagtailadmin/shared/icons.html", {"icons": combined_icon_markup}
|
||||
)
|
||||
return _full_sprite_html
|
||||
return _icons_html
|
||||
|
||||
|
||||
def sprite(request):
|
||||
|
|
Ładowanie…
Reference in New Issue