about summary refs log tree commit diff
path: root/app/views
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-09-01 19:44:05 +0200
committerGitHub <noreply@github.com>2019-09-01 19:44:05 +0200
commit47584180d8ed03666d45f423107d3113cc4a6230 (patch)
tree662b09b9b111146dcbdad40120c69386773168b5 /app/views
parentd3442894310022062debc4c6ed6b117f8bc3904b (diff)
Fix wrong percentages in admin UI for hashtag usage breakdown (#11714)
Diffstat (limited to 'app/views')
-rw-r--r--app/views/admin/tags/show.html.haml4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/admin/tags/show.html.haml b/app/views/admin/tags/show.html.haml
index c3779d48c..f9677874a 100644
--- a/app/views/admin/tags/show.html.haml
+++ b/app/views/admin/tags/show.html.haml
@@ -38,8 +38,10 @@
 .table-wrapper
   %table.table
     %tbody
+      - total = @usage_by_domain.sum(&:statuses_count).to_f
+
       - @usage_by_domain.each do |(domain, count)|
         %tr
           %th= domain || site_hostname
-          %td= number_to_percentage((count / @tag.history[0][:uses].to_f) * 100)
+          %td= number_to_percentage((count / total) * 100, precision: 1)
           %td= number_with_delimiter count