Browse Source

Divide amounts by 30

= 11 months ago
parent
commit
e4a46d1377
4 changed files with 1 additions and 1 deletions
  1. 0 0
      data/company-data-apr25.json
  2. 0 0
      data/company-data-mar25.json
  3. 0 0
      data/company-data-may25.json
  4. 1 1
      main.js

File diff suppressed because it is too large
+ 0 - 0
data/company-data-apr25.json


File diff suppressed because it is too large
+ 0 - 0
data/company-data-mar25.json


File diff suppressed because it is too large
+ 0 - 0
data/company-data-may25.json


+ 1 - 1
main.js

@@ -678,7 +678,7 @@ function generateRankChart(containerID, currentData, prevData, companyName, curr
 		row.appendChild(tickerColumn);
 		
 		const amountColumn = document.createElement("td")
-		amountColumn.textContent = mat.data.amount.toLocaleString();
+		amountColumn.textContent = mat.data.amount.toLocaleString(undefined, {maximumFractionDigits: 1});
 		row.appendChild(amountColumn);
 		
 		const volumeColumn = document.createElement("td")

Some files were not shown because too many files changed in this diff