Fix wrong percentages in admin UI for hashtag usage breakdown (#11714)

This commit is contained in:
Eugen Rochko
2019-09-01 19:44:05 +02:00
committed by GitHub
parent d344289431
commit 47584180d8
2 changed files with 5 additions and 2 deletions

View File

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