From 67713eb9808b48a0c28fae604eb1300cc108500b Mon Sep 17 00:00:00 2001 From: decabeza Date: Fri, 8 Jun 2018 15:14:50 +0200 Subject: [PATCH] Fixes accesskey on subnavigation --- app/views/shared/_subnavigation.html.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/shared/_subnavigation.html.erb b/app/views/shared/_subnavigation.html.erb index 6209fca1e..7a942f13a 100644 --- a/app/views/shared/_subnavigation.html.erb +++ b/app/views/shared/_subnavigation.html.erb @@ -32,7 +32,7 @@ <%= layout_menu_link_to t("layouts.header.collaborative_legislation"), legislation_processes_path, controller.class.parent == Legislation, - accesskey: "l" %> + accesskey: "4" %> <% end %> <% if feature?(:spending_proposals) %> @@ -48,14 +48,14 @@ <%= layout_menu_link_to t("layouts.header.budgets"), budgets_path, controller_name == "budgets" || controller_name == "investments", - accesskey: "4", + accesskey: "5", title: t("shared.go_to_page") + t("layouts.header.budgets") %> <% end %>
  • <%= link_to t("layouts.header.help"), help_path, - accesskey: "5", + accesskey: "6", class: ("is-active" if current_page?(help_path)), title: t("shared.go_to_page") + t("layouts.header.help") %>