From 8bef2f87b234a3d97d98f8ddc3ac0909ae8d723d Mon Sep 17 00:00:00 2001
From: Arnaud Levy <contact@arnaudlevy.com>
Date: Fri, 8 Sep 2023 16:04:23 +0200
Subject: [PATCH] Fix
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Co-authored-by: Pierre-André Boissinot <pierreandre.boissinot@noesya.coop>
Co-authored-by: Sébastien Gaya <sebastien.gaya@gmail.com>
---
 .../communication/websites/agenda/events/static.html.erb    | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app/views/admin/communication/websites/agenda/events/static.html.erb b/app/views/admin/communication/websites/agenda/events/static.html.erb
index 932c37d15..a0a7c66bd 100644
--- a/app/views/admin/communication/websites/agenda/events/static.html.erb
+++ b/app/views/admin/communication/websites/agenda/events/static.html.erb
@@ -4,8 +4,10 @@ dates:
   status: "<%= @about.status %>"
   archive: <%= @about.archive? %>
   computed:
-    short: <%= date_range_i18n(@about.from_day, @about.to_day) %>
-    long: <%= date_range_i18n(@about.from_day, @about.to_day, :long) %>
+    short: >-
+      <%= date_range_i18n(@about.from_day, @about.to_day) %>
+    long: >-
+      <%= date_range_i18n(@about.from_day, @about.to_day, :long) %>
   from:
     day: <%= @about.from_day %>
 <% if @about.from_hour %>
-- 
GitLab