From f611467705435401b81afb6d30853825dd5acf3d Mon Sep 17 00:00:00 2001 From: fumimowdan Date: Tue, 31 Oct 2023 15:10:33 +0000 Subject: [PATCH] Fix flipper menu url --- app/views/layouts/admin.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/admin.html.erb b/app/views/layouts/admin.html.erb index dc48911c..180c28ec 100644 --- a/app/views/layouts/admin.html.erb +++ b/app/views/layouts/admin.html.erb @@ -38,7 +38,7 @@ <%= header.with_navigation_item(text: "Users", href: users_path, active: request.path.include?('/system-admin/users')) if current_user.has_role?(:admin) %> <%= header.with_navigation_item(text: "Settings", href: edit_settings_path, active: request.path.include?('/system-admin/settings')) if current_user.has_role?(:admin) %> <%= header.with_navigation_item(text: "Audits", href: audits_path, active: request.path.include?('/system-admin/audits')) if current_user.has_role?(:admin) %> - <%= header.with_navigation_item(text: "Feature Flags", href: '/system_admin/features/') if current_user.has_role?(:super_admin) %> + <%= header.with_navigation_item(text: "Feature Flags", href: '/system-admin/features') if current_user.has_role?(:super_admin) %> <%= header.with_navigation_item(text: "Logout", href: destroy_user_session_path, active: false) %> <% end %>