From: Jeong Arm Date: Sun, 4 Aug 2019 21:00:38 +0000 (+0900) Subject: Fix timestamp on featured tag (#11477) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=45ec3604818b4d8dafee1180bf7d140e047f95b2;p=mastodon.git Fix timestamp on featured tag (#11477) It resolves #11338 --- 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'