Projet

Général

Profil

0001-pwa-strip-navigation-to-avoid-trailing-whitespaces-f.patch

Frédéric Péters, 25 janvier 2022 17:43

Télécharger (882 octets)

Voir les différences:

Subject: [PATCH] pwa: strip navigation to avoid trailing whitespaces from
 template (#61082)

 combo/apps/pwa/templatetags/pwa.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/pwa/templatetags/pwa.py
36 36
        'render_skeleton': context.get('render_skeleton'),
37 37
        'site_base': context['request'].build_absolute_uri('/')[:-1],
38 38
    }
39
    return pwa_navigation_template.render(context)
39
    return pwa_navigation_template.render(context).strip()
40
-