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