mirror of
https://github.com/simon987/od-database.git
synced 2025-12-15 07:39:04 +00:00
Bug fixes, ES7
This commit is contained in:
@@ -257,7 +257,7 @@ function drawChart(rData) {
|
||||
function fillWebsiteTable(rData) {
|
||||
|
||||
document.getElementById("baseUrl").innerHTML = rData["base_url"];
|
||||
document.getElementById("fileCount").innerHTML = rData["total_count"];
|
||||
document.getElementById("fileCount").innerHTML = rData["total_count"].hasOwnProperty("value") ? rData["total_count"]["value"] : rData["total_count"];
|
||||
document.getElementById("totalSize").innerHTML = humanFileSize(rData["total_size"]);
|
||||
document.getElementById("reportTime").innerHTML = rData["report_time"] + " UTC";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user