From f5ce0fd997ce19d79c1523c55f0cd48df293b054 Mon Sep 17 00:00:00 2001 From: martent Date: Wed, 6 Jun 2018 10:48:31 +0200 Subject: [PATCH] Fixed display of booking ends_at --- app/views/bookings/_bookable_periods.html.haml | 2 +- app/views/seller_bookings/_bookable_periods.html.haml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/bookings/_bookable_periods.html.haml b/app/views/bookings/_bookable_periods.html.haml index 033b809..38459c1 100644 --- a/app/views/bookings/_bookable_periods.html.haml +++ b/app/views/bookings/_bookable_periods.html.haml @@ -19,4 +19,4 @@ %td= bookable_period.booking_starts_at.to_formatted_s(:date_and_time) %td= bookable_period.booking_ends_at.to_formatted_s(:date_and_time) %td= bookable_period.starts_at - %td= bookable_period.starts_at + %td= bookable_period.ends_at diff --git a/app/views/seller_bookings/_bookable_periods.html.haml b/app/views/seller_bookings/_bookable_periods.html.haml index b86ee4b..03fa38d 100644 --- a/app/views/seller_bookings/_bookable_periods.html.haml +++ b/app/views/seller_bookings/_bookable_periods.html.haml @@ -20,4 +20,4 @@ %td= bookable_period.booking_starts_at.to_formatted_s(:date_and_time) %td= bookable_period.booking_ends_at.to_formatted_s(:date_and_time) %td= bookable_period.starts_at - %td= bookable_period.starts_at + %td= bookable_period.ends_at