Projet

Général

Profil

0001-studio-fix-recent-error-block-with-long-varnames-668.patch

Lauréline Guérin, 30 juin 2022 14:16

Télécharger (1,04 ko)

Voir les différences:

Subject: [PATCH] studio: fix recent error block with long varnames (#66804)

 wcs/templates/wcs/backoffice/studio.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/templates/wcs/backoffice/studio.html
48 48
      {% if recent_errors %}
49 49
        <ul>
50 50
          {% for error in recent_errors %}
51
          <li><a href="logged-errors/{{ error.id }}/">{{ error.summary }}</a></li>
51
          <li><a href="logged-errors/{{ error.id }}/">{{ error.summary|split:'_'|join:'_<wbr/>' }}</a></li>
52 52
          {% endfor %}
53 53
        </ul>
54 54
        <p><a class="logged-errors-all pk-button" href="logged-errors/">{% trans "See all errors" context "studio" %}</a></p>
55
-