From 1ad3cffaea00ef4e6f9fd12a9e97891e86dcc337 Mon Sep 17 00:00:00 2001 From: Jason Punyon Date: Mon, 26 Feb 2024 07:42:09 -0500 Subject: [PATCH] Missed a .to_date (#29390) --- app/views/relationships/_account.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/relationships/_account.html.haml b/app/views/relationships/_account.html.haml index 43a3d64bc8..23afcf7495 100644 --- a/app/views/relationships/_account.html.haml +++ b/app/views/relationships/_account.html.haml @@ -16,7 +16,7 @@ %small= t('accounts.followers', count: account.followers_count).downcase %td.accounts-table__count - if account.last_status_at.present? - %time.time-ago{ datetime: account.last_status_at.to_date.iso8601, title: l(account.last_status_at.to_date) }= l account.last_status_at + %time.time-ago{ datetime: account.last_status_at.to_date.iso8601, title: l(account.last_status_at.to_date) }= l account.last_status_at.to_date - else \- %small= t('accounts.last_active')