mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
fix display issue on snippet edit view (#5883)
This commit is contained in:
parent
0ccfe9568f
commit
06fbde14b3
@ -31,6 +31,7 @@ Changelog
|
||||
* Fix: `refresh_index` method on Elasticsearch no longer fails (Lars van de Kerkhof)
|
||||
* Fix: Document tags no longer fail to update when replacing the document file at the same time (Matt Westcott)
|
||||
* Fix: Prevent error from very tall / wide images being resized to 0 pixels (Fidel Ramos)
|
||||
* Fix: Remove excess margin when editing snippets (Quadric)
|
||||
|
||||
|
||||
2.8 (03.02.2020)
|
||||
|
@ -49,6 +49,7 @@ Bug fixes
|
||||
* ``refresh_index`` method on Elasticsearch no longer fails (Lars van de Kerkhof)
|
||||
* Document tags no longer fail to update when replacing the document file at the same time (Matt Westcott)
|
||||
* Prevent error from very tall / wide images being resized to 0 pixels (Fidel Ramos)
|
||||
* Remove excess margin when editing snippets (Quadric)
|
||||
|
||||
|
||||
Upgrade considerations
|
||||
|
@ -3,7 +3,7 @@
|
||||
{% block titletag %}{% blocktrans with snippet_type_name=model_opts.verbose_name %}Editing {{ snippet_type_name }} - {{ instance }}{% endblocktrans %}{% endblock %}
|
||||
{% block content %}
|
||||
{% trans "Editing" as editing_str %}
|
||||
{% include "wagtailadmin/shared/header.html" with title=editing_str subtitle=instance icon="snippet" tabbed=1 %}
|
||||
{% include "wagtailadmin/shared/header.html" with title=editing_str subtitle=instance icon="snippet" tabbed=1 merged=1 %}
|
||||
|
||||
<div class="row row-flush">
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user