Don't append to search for popular tags

This commit is contained in:
Drew DeVault 2021-03-03 16:43:31 -05:00
parent 610accc580
commit af11d9ae79
1 changed files with 1 additions and 2 deletions

View File

@ -116,8 +116,7 @@
{% for tag in tags %} {% for tag in tags %}
<div class="col-md-4"> <div class="col-md-4">
<a <a
href="{{url_for("public.project_index", href="{{url_for("public.project_index", search="#"+tag[1])}}"
search=((search or "").strip() + " #"+tag[1]).lstrip())}}"
>#{{tag[1]}}</a>: >#{{tag[1]}}</a>:
{{tag[0]}} project{% if tag[0] > 1 %}s{% endif %} {{tag[0]}} project{% if tag[0] > 1 %}s{% endif %}
</div> </div>