Skip to content

Commit

Permalink
Change 'discussing' to 'following' on tag pages (#7952)
Browse files Browse the repository at this point in the history
* Change 'discussing' to 'following' on tag pages

* Update _header.html.erb
  • Loading branch information
jywarren authored May 26, 2020
1 parent 2de00df commit 3472545
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/views/tag/show/_header.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,14 @@
<% else %>

<div class="im d-none d-md-block" id="wiki-empty1">
<div class="bottom-right"><%= pluralize(Tag.follower_count(params[:id]), 'person') %> discussing</div>
<div class="bottom-right">
<a href="/contributors/<%= params[:id] %>"><%= pluralize(Tag.follower_count(params[:id]), 'person') %> following</a>
</div>
</div>
<div class="im d-sm-none" id="wiki-empty2">
<div class="bottom-right"><%= pluralize(Tag.follower_count(params[:id]), 'person') %> discussing</div>
<div class="bottom-right">
<a href="/contributors/<%= params[:id] %>"><%= pluralize(Tag.follower_count(params[:id]), 'person') %> following</a>
</div>
</div>
<% end %>

Expand Down

0 comments on commit 3472545

Please sign in to comment.