Browse Source

Fix missing at-sign (regression from #4688) (#4705)

pull/4/head
Yamagishi Kazutoshi 6 years ago
committed by Eugen Rochko
parent
commit
3ac7b353f8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/views/admin/accounts/show.html.haml

+ 1
- 1
app/views/admin/accounts/show.html.haml View File

@ -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')

Loading…
Cancel
Save