From: Yamagishi Kazutoshi Date: Sat, 26 Aug 2017 10:39:26 +0000 (+0900) Subject: Fix missing at-sign (regression from #4688) (#4705) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=3ac7b353f8ba74bce9e20974bcc1832930424ef2;p=mastodon.git Fix missing at-sign (regression from #4688) (#4705) --- diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml index 85841d7a1..dc2f16cc9 100644 --- a/app/views/admin/accounts/show.html.haml +++ b/app/views/admin/accounts/show.html.haml @@ -44,7 +44,7 @@ %th= t('admin.accounts.push_subscription_expires') %td - if @account.subscribed? - %time.formatted{ datetime: account.subscription_expires_at.iso8601, title: l(account.subscription_expires_at) } + %time.formatted{ datetime: @account.subscription_expires_at.iso8601, title: l(@account.subscription_expires_at) } = l @account.subscription_expires_at - else = t('admin.accounts.not_subscribed')