diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-03 07:59:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 07:59:52 +0200 |
commit | ec1dd865fb09de2505e24001bdb5f3ac82f34a43 (patch) | |
tree | 6cb609dc436e4c238aeb3fb0eccf1b68dff0382c /app/views | |
parent | d19d86fe2b26fb00577d600234c32d726fb199a4 (diff) |
Fix error in admin UI for hashtag usage breakdown (#11743)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/tags/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/tags/show.html.haml b/app/views/admin/tags/show.html.haml index f9677874a..d54a43c1e 100644 --- a/app/views/admin/tags/show.html.haml +++ b/app/views/admin/tags/show.html.haml @@ -38,7 +38,7 @@ .table-wrapper %table.table %tbody - - total = @usage_by_domain.sum(&:statuses_count).to_f + - total = @usage_by_domain.sum(&:last).to_f - @usage_by_domain.each do |(domain, count)| %tr |