This commit is contained in:
2026-02-24 17:13:31 -05:00
parent ae48ceff91
commit f186c94048
9 changed files with 140 additions and 1 deletions
@@ -5,7 +5,7 @@ function fetchJson() {
.then(data => {
console.log(data);
const tableBody = document.getElementById("meteorTableBody");
data.splice(0,500).forEach(meteor => { // Just get 500 values for now
data.forEach(meteor => { // Just get 500 values for now
const row = document.createElement("tr");
const id = document.createElement("td");
id.textContent = meteor.id ?? "-";