From a0de27956ef28083d1c1566ad46eb2ef047dc345 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 19 2016 08:15:38 +0000 Subject: Only add the tags if there are any Otherwise we end-up with an argument ``?tags=[]`` which leads to some filtering server side which we do not want. So just ignore the tags if there aren't any. --- diff --git a/pagure/templates/issues.html b/pagure/templates/issues.html index 6ef808a..2dde4a9 100644 --- a/pagure/templates/issues.html +++ b/pagure/templates/issues.html @@ -132,7 +132,9 @@ repo=repo.name ) }}" method="GET">
- + {% for tag in tags %} + + {% endfor %}