From 19a470f67ad848e573e80f959333ff170fae4070 Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Thu, 16 Nov 2023 14:00:28 +0100 Subject: [PATCH] Fix title with anything in it (HAL style) --- app/views/admin/application/static/_breadcrumbs.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/admin/application/static/_breadcrumbs.html.erb b/app/views/admin/application/static/_breadcrumbs.html.erb index 819e44a2d..45da218f5 100644 --- a/app/views/admin/application/static/_breadcrumbs.html.erb +++ b/app/views/admin/application/static/_breadcrumbs.html.erb @@ -3,4 +3,5 @@ breadcrumbs: - title: "<%= page.best_title %>" path: "<%= page.path %>" <% end %> - - title: "<%= current.to_s %>" \ No newline at end of file + - title: >- + <%= current.to_s %> \ No newline at end of file -- GitLab