From dde9b2c7036f20c33278a525e0063a0e54bb0ec3 Mon Sep 17 00:00:00 2001 From: Ollie Bennett Date: Wed, 26 Jun 2024 06:24:05 +0100 Subject: [PATCH] Reduce comment time to just a date --- app/models/comment.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/comment.rb b/app/models/comment.rb index 5aba826b..32627974 100644 --- a/app/models/comment.rb +++ b/app/models/comment.rb @@ -11,6 +11,6 @@ class Comment < ApplicationRecord auto_strip_attributes :text def formatted_date - created_at.strftime('%e %b @ %H:%M').squish + created_at.strftime('%e %b').squish end end