summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Punyon <jason.punyon@gmail.com>2024-02-26 07:42:09 -0500
committerGitHub <noreply@github.com>2024-02-26 12:42:09 +0000
commit1ad3cffaea00ef4e6f9fd12a9e97891e86dcc337 (patch)
tree421a749c59a6374a2da74e536b303b8dab68c8d0
parent8fd8b30c24ebb2f91292430bcf73f15884622195 (diff)
Missed a .to_date (#29390)
-rw-r--r--app/views/relationships/_account.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/relationships/_account.html.haml b/app/views/relationships/_account.html.haml
index 43a3d64bc85..23afcf74951 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')