From 8cd9e80154f40baa1963ab68d1e8587109fa2875 Mon Sep 17 00:00:00 2001 From: Sean Rankine Date: Fri, 3 Jan 2025 13:38:50 +0000 Subject: [PATCH] Remove notes column from applications table Remove the "Notes" column from the applications table This takes up valuable UX real estate for essentially one app - notes are still visible on the individual application page. --- app/assets/stylesheets/_tables.scss | 4 ---- app/views/applications/_applications_table.html.erb | 9 --------- 2 files changed, 13 deletions(-) diff --git a/app/assets/stylesheets/_tables.scss b/app/assets/stylesheets/_tables.scss index 987df208c..d75b7d399 100644 --- a/app/assets/stylesheets/_tables.scss +++ b/app/assets/stylesheets/_tables.scss @@ -2,10 +2,6 @@ color: govuk-colour("dark-grey"); } -.release__application-notes { - width: 50%; -} - .release__application-link { display: inline-block; margin-bottom: 10px; diff --git a/app/views/applications/_applications_table.html.erb b/app/views/applications/_applications_table.html.erb index 8f72de75f..833b78863 100644 --- a/app/views/applications/_applications_table.html.erb +++ b/app/views/applications/_applications_table.html.erb @@ -17,7 +17,6 @@ <% @environments.each do |environment| %> <%= t.header environment.humanize %> <% end %> - <%= t.header "Notes" %> <% end %> <%= t.body do %> @@ -28,13 +27,6 @@ <%= render partial: "shared/badges", locals: { application: application } %> <% end %> - <% application_notes = capture do %> -

- <%= application.status_notes %> - <%= link_to "edit", edit_application_path(application), class: "govuk-link" %> -

- <% end %> - <%= t.cell application_name %> <% application_status = capture do %> @@ -58,7 +50,6 @@ <% end %> <%= t.cell env_deploy %> <% end %> - <%= t.cell application_notes %> <% end %> <% end %> <% end %>