Fix #4167: Add more IDs to side menu elements.

This commit is contained in:
evazion
2019-09-11 03:13:10 -05:00
parent a5043245b6
commit 637e961f0a
3 changed files with 56 additions and 44 deletions

View File

@@ -27,12 +27,12 @@
<section id="post-history">
<h1>History</h1>
<ul>
<li><%= link_to "Tags", post_versions_path(search: { post_id: @post.id }) %></li>
<li><%= link_to "Pools", pool_versions_path(search: { post_id: @post.id }) %></li>
<li><%= link_to "Notes", note_versions_path(search: { post_id: @post.id }) %></li>
<li><%= link_to "Moderation", post_events_path(@post.id) %></li>
<li><%= link_to "Commentary", artist_commentary_versions_path(search: { post_id: @post.id }) %></li>
<li><%= link_to "Replacements", post_replacements_path(search: {post_id: @post.id }) %></li>
<li id="post-history-tags"><%= link_to "Tags", post_versions_path(search: { post_id: @post.id }) %></li>
<li id="post-history-pools"><%= link_to "Pools", pool_versions_path(search: { post_id: @post.id }) %></li>
<li id="post-history-notes"><%= link_to "Notes", note_versions_path(search: { post_id: @post.id }) %></li>
<li id="post-history-moderation"><%= link_to "Moderation", post_events_path(@post.id) %></li>
<li id="post-history-commentary"><%= link_to "Commentary", artist_commentary_versions_path(search: { post_id: @post.id }) %></li>
<li id="post-history-replacements"><%= link_to "Replacements", post_replacements_path(search: {post_id: @post.id }) %></li>
</ul>
</section>
</aside>