From e0e5fb3d5aeeeb611d96728e614bd65bde93739e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 9 Apr 2023 01:38:12 +0200 Subject: [PATCH] Do not double escape tag link. Tag links with space in it now work properly --- templates/helper.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/helper.twig b/templates/helper.twig index 137dd792..72a43060 100644 --- a/templates/helper.twig +++ b/templates/helper.twig @@ -32,7 +32,7 @@ {% macro string_to_tags(string, class="badge bg-info") %} {% for tag in string|split(',') %} - {{ tag | trim }} + {{ tag | trim }} {% endfor %} {% endmacro %}