about summary refs log tree commit diff
path: root/app/views/accounts
diff options
context:
space:
mode:
authorJeong Arm <kjwonmail@gmail.com>2019-08-05 06:00:38 +0900
committerEugen Rochko <eugen@zeonfederated.com>2019-08-04 23:00:38 +0200
commit45ec3604818b4d8dafee1180bf7d140e047f95b2 (patch)
tree634e0975ca90e5ad9ad26ac0b2384e35f3de9fc6 /app/views/accounts
parentf96f45ef12341648cb8d79d9b70f8c5636f98f64 (diff)
Fix timestamp on featured tag (#11477)
It resolves #11338
Diffstat (limited to 'app/views/accounts')
-rw-r--r--app/views/accounts/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/accounts/show.html.haml b/app/views/accounts/show.html.haml
index bf7a9f5f7..034304936 100644
--- a/app/views/accounts/show.html.haml
+++ b/app/views/accounts/show.html.haml
@@ -73,7 +73,7 @@
               - if featured_tag.last_status_at.nil?
                 = t('accounts.nothing_here')
               - else
-                %time{ datetime: featured_tag.last_status_at.iso8601, title: l(featured_tag.last_status_at) }= l featured_tag.last_status_at
+                %time.formatted{ datetime: featured_tag.last_status_at.iso8601, title: l(featured_tag.last_status_at) }= l featured_tag.last_status_at
           .trends__item__current= number_to_human featured_tag.statuses_count, strip_insignificant_zeros: true
 
     = render 'application/sidebar'