diff options
author | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2014-10-15 09:36:19 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2014-10-15 09:36:19 +0000 |
commit | 19b0ba5ecbf63052cc4d9b85364efc22d5e12f11 (patch) | |
tree | 34ed7830556118a9c64f3723daaa2b111bad4b11 | |
parent | c31d9b73d78138924272f9af74c41a40ee9d3265 (diff) | |
parent | 3c66490e6fda4fcd222de188ace35add821f6b91 (diff) | |
download | gitlab-ce-19b0ba5ecbf63052cc4d9b85364efc22d5e12f11.tar.gz |
Merge branch 'fix-star-icon' into 'master'
Fix star icon
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/682.
See merge request !1180
-rw-r--r-- | app/views/explore/projects/_project.html.haml | 1 | ||||
-rw-r--r-- | app/views/explore/projects/starred.html.haml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/views/explore/projects/_project.html.haml b/app/views/explore/projects/_project.html.haml index 4bc79d0a8c7..ffbddbae4d6 100644 --- a/app/views/explore/projects/_project.html.haml +++ b/app/views/explore/projects/_project.html.haml @@ -6,6 +6,7 @@ - if current_page?(starred_explore_projects_path) %strong.pull-right + %i.fa.fa-star = pluralize project.star_count, 'star' .project-info diff --git a/app/views/explore/projects/starred.html.haml b/app/views/explore/projects/starred.html.haml index d4b11405517..420f0693756 100644 --- a/app/views/explore/projects/starred.html.haml +++ b/app/views/explore/projects/starred.html.haml @@ -1,6 +1,6 @@ .explore-trending-block %p.lead - %i.fa.fa-comments-o + %i.fa.fa-star See most starred projects %hr .public-projects |