Browse Source

Fix error in admin UI for hashtag usage breakdown (#11743)

pull/4/head
Eugen Rochko 4 years ago
committed by GitHub
parent
commit
ec1dd865fb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/views/admin/tags/show.html.haml

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

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

Loading…
Cancel
Save