From 60b8bbfa067085d2d32423b569ed45258152d61a Mon Sep 17 00:00:00 2001
From: Ahmad Farhat <ahmad.af.farhat@gmail.com>
Date: Wed, 20 Jan 2021 16:55:05 -0500
Subject: [PATCH] Shortened date for last session to make room block smaller
 (#2449)

---
 app/helpers/application_helper.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index cbbc8637..5691cedf 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -139,6 +139,6 @@ module ApplicationHelper
   # Returns a more friendly/readable date time object
   def view_date(date)
     return "" if date.nil? # Handle invalid dates
-    local_time(date)
+    local_time(date, "%b %d, %Y %-I:%M%P")
   end
 end
-- 
GitLab