Skip to content

Commit

Permalink
issue 8500 solved (publiclab#8514)
Browse files Browse the repository at this point in the history
  • Loading branch information
preciousakams authored and billymoroney1 committed Dec 28, 2021
1 parent 5346730 commit d1f347e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/users/likes.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<% user = user || @user # allow overriding w/ local variable %>
<% if @wikis && @wikis.length > 0 %>
<% if @wikis && @wikis.count > 0 %>
<h3 style="margin-top:0;"><%= translation('users.likes.wiki_liked_by') %> <a href="/profile/<%= user.name %>"><%= user.name %></a></h3>
<ul class="nav bullet">
Expand All @@ -23,7 +23,7 @@
<h3 style="margin-top:0;"><i class="fa fa-star-o"></i> <%= translation('users.likes.liked_by') %> <a href="/profile/<%= user.name %>"><%= user.name %></a></h3>
<hr />
<% if @notes && @notes.length == 0 %>
<% if @notes && @notes.count == 0 %>
<% if current_user && (current_user.id == @user.uid) %>
No notes liked by you.
<% else %>
Expand Down

0 comments on commit d1f347e

Please sign in to comment.