Browse Source

Remove extra "s" character from the starred repos page

Michael Watters 5 years ago
parent
commit
ea52d7b60d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pagure/templates/userprofile_starred.html

+ 1 - 1
pagure/templates/userprofile_starred.html

@@ -11,7 +11,7 @@
         <div class="d-flex align-items-center mb-3">
           <h4 class="font-weight-bold mb-0">Starred {{ projectstring(plural=True) }}</h4>
           <span class="btn btn-outline-secondary disabled opacity-100 border-0 ml-auto font-weight-bold">{{
-              user.stars | length }} {{ projectstring(plural=(user.stars | length > 1)) }}s</span>
+              user.stars | length }} {{ projectstring(plural=(user.stars | length > 1)) }}</span>
         </div>
           {% if repos %}
             {{ render_repo_listing(repos)}}