diff --git a/app/views/tags/_alias_and_implication_list.html.erb b/app/views/tags/_alias_and_implication_list.html.erb index fc8c418f9..fcbb25565 100644 --- a/app/views/tags/_alias_and_implication_list.html.erb +++ b/app/views/tags/_alias_and_implication_list.html.erb @@ -7,19 +7,19 @@ <% end %> <% if tag&.consequent_aliases&.present? %>
- The following tags are aliased to this tag: <%= multiple_link_to_wiki_or_new(tag.consequent_aliases.map(&:antecedent_name)) %> + The following tags are aliased to this tag: <%= multiple_link_to_wiki_or_new(tag.consequent_aliases.map(&:antecedent_name).sort) %> (<%= link_to "learn more", wiki_pages_path(title: "e621:tag_aliases") %>).
<% end %> <% if tag&.antecedent_implications&.present? %>- This tag implicates <%= multiple_link_to_wiki_or_new(tag.antecedent_implications.map(&:consequent_name)) %> + This tag implicates <%= multiple_link_to_wiki_or_new(tag.antecedent_implications.map(&:consequent_name).sort) %> (<%= link_to "learn more", wiki_pages_path(title: "e621:tag_implications") %>).
<% end %> <% if tag&.consequent_implications&.present? %>- The following tags implicate this tag: <%= multiple_link_to_wiki_or_new(tag.consequent_implications.map(&:antecedent_name)) %> + The following tags implicate this tag: <%= multiple_link_to_wiki_or_new(tag.consequent_implications.map(&:antecedent_name).sort) %> (<%= link_to "learn more", wiki_pages_path(title: "e621:tag_implications") %>).
<% end %>