diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-07-16 19:51:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-16 19:51:16 +0200 |
commit | 8241f162dfa4f7c2cfe79d6f18ddcbd2de4def0c (patch) | |
tree | 9f543e70e2422568e7d5bf97487c9db3e6adc91a /app/views/admin/dashboard | |
parent | 0d13e30ad2579a9fc55f1b57c80cf9a9a89b1491 (diff) |
Fix tag usage display on admin dashboard
Diffstat (limited to 'app/views/admin/dashboard')
-rw-r--r-- | app/views/admin/dashboard/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/dashboard/index.html.haml b/app/views/admin/dashboard/index.html.haml index 41a0ee5a1..1996eef4d 100644 --- a/app/views/admin/dashboard/index.html.haml +++ b/app/views/admin/dashboard/index.html.haml @@ -146,4 +146,4 @@ - @trending_hashtags.each do |tag| %li = link_to "##{tag.name}", web_url("timelines/tag/#{tag.name}") - %span.pull-right= number_with_delimiter(tag.history[0]['accounts'].to_i) + %span.pull-right= number_with_delimiter(tag.history[0][:accounts].to_i) |