From 1b21742dff03eee9f2aaab53fc3d29c47d8e7516 Mon Sep 17 00:00:00 2001 From: Callum Knights Date: Thu, 17 Oct 2024 12:36:32 +0100 Subject: [PATCH] Remove breadcrumbs from transition Breadcrumbs being added into `content` in the main application layout were resulting in a WCAG failure. As this is a developer only application the breadcrumbs are seldom used, so we decided it wasn't worth the work to decouple them from `content`. --- app/views/layouts/application.html.erb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index d74498fa2..9e34a2430 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -56,14 +56,6 @@ %> <% end %> - <% breadcrumbs.tap do |links| %> - <% if links.any? %> - - <% end %> - <% end %> - <%= yield %> <%= render partial: 'shared/go_to' %> <% end %>