summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeong Arm <kjwonmail@gmail.com>2019-08-05 06:00:38 +0900
committerEugen Rochko <eugen@zeonfederated.com>2019-08-09 21:34:53 +0200
commit68da55e50c49faf8d726ec7850376e4112349af1 (patch)
tree4982739934b812b0ade1ef60c95559dfd217ef4c
parent3f7614f98a2610771a5ac7677d7f1249b88f165a (diff)
Fix timestamp on featured tag (#11477)
It resolves #11338
-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 9323d70ab99..8f8647536b1 100644
--- a/app/views/accounts/show.html.haml
+++ b/app/views/accounts/show.html.haml
@@ -75,7 +75,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'