From da40a1cb735974215e3754fa6324d02fa3f36fbe Mon Sep 17 00:00:00 2001 From: evazion Date: Sat, 27 Jun 2020 02:18:33 -0500 Subject: [PATCH] Fix #4463: Missing link to recent changes in pools' topbar. --- app/views/pools/_secondary_links.html.erb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/views/pools/_secondary_links.html.erb b/app/views/pools/_secondary_links.html.erb index 4a6b77711..d2b1ca5c9 100644 --- a/app/views/pools/_secondary_links.html.erb +++ b/app/views/pools/_secondary_links.html.erb @@ -5,6 +5,9 @@ <% if policy(Pool).create? %> <%= subnav_link_to "New", new_pool_path %> <% end %> + <% if PoolVersion.enabled? %> + <%= subnav_link_to "Recent changes", pool_versions_path %> + <% end %> <%= subnav_link_to "Help", wiki_page_path("help:pools") %> <% if @pool && !@pool.new_record? %>
  • |