From 55259c365b755678d39c2af730a51b602f3a42b3 Mon Sep 17 00:00:00 2001 From: joeuhren Date: Mon, 24 Jun 2019 19:56:42 -0600 Subject: [PATCH] Fix for 'Wealth Distribution' total percent value --- views/richlist.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/richlist.pug b/views/richlist.pug index f9b5c2b..6d39ea4 100644 --- a/views/richlist.pug +++ b/views/richlist.pug @@ -88,7 +88,7 @@ block content th span #{settings.locale.total} td - td.text-center #{(100 - parseFloat(distd.percent)).toFixed(2)} + td.text-center #{(parseFloat(dista.percent)+parseFloat(distb.percent)+parseFloat(distc.percent)+parseFloat(distd.percent)).toFixed(2)} center div#pieChart(style="width:300px;height:305px;margin:0px;") .row.footer-margin \ No newline at end of file