views: fix deprecated keyword argument warnings in current_page?.

This commit is contained in:
evazion
2021-05-14 21:53:16 -05:00
parent ca8bfb9149
commit cb8cbed0ec
3 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
<% if policy(@wiki_page).edit? %>
<%= subnav_link_to "Edit", edit_wiki_page_path(@wiki_page.id), "data-shortcut": "e" %>
<% if current_page?({ action: :edit }) %>
<% if current_page?(action: :edit) %>
<% if @wiki_page.is_deleted? %>
<%= subnav_link_to "Undelete", wiki_page_path(@wiki_page.id), remote: true, method: :put, "data-params": "wiki_page[is_deleted]=false", "data-shortcut": "shift+d", "data-confirm": "Are you sure you want to undelete this wiki?" %>
<% else %>