From 3a6fef61127b5b8f3d67b9872e534384018df16d Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Tue, 20 Jun 2023 11:33:34 +0200 Subject: [PATCH] Fix --- app/views/admin/communication/blocks/content/_editor.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/communication/blocks/content/_editor.html.erb b/app/views/admin/communication/blocks/content/_editor.html.erb index ca5ecb2db..8831804f2 100644 --- a/app/views/admin/communication/blocks/content/_editor.html.erb +++ b/app/views/admin/communication/blocks/content/_editor.html.erb @@ -16,12 +16,12 @@ <div class="col-lg-4"> <%= link_to t('admin.communication.blocks.headings.add'), new_admin_communication_heading_path(about_id: about.id, about_type: about.class.name), - class: 'py-5 px-2 d-block bg-light text-center border h4' if can? :create, Communication::Block::Heading%> + class: 'py-5 px-2 d-block bg-light text-center border h4' if can? :create, Communication::Block::Heading %> </div> <div class="col-lg-8"> <%= link_to t('admin.communication.blocks.add'), new_admin_communication_block_path(about_id: about.id, about_type: about.class.name), - class: 'py-5 px-2 d-block bg-light text-center border h4' if can? :create, Communication::Block%> + class: 'py-5 px-2 d-block bg-light text-center border h4' if can? :create, Communication::Block %> </div> </div> </div> -- GitLab