Skip to content

Commit

Permalink
-a
Browse files Browse the repository at this point in the history
  • Loading branch information
ejhon1116 committed Nov 14, 2024
1 parent a439f1e commit a780d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pc-parts/part_fetch_show.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ async function fetchItems() {

// Generate table based on items and price limit
function generateTable(items, start, end, priceLimit, nameFilter, typeBlacklist, brandBlacklist) {
console.log('${end-start} ' + end-start);
const tableBody = document.getElementById('table-body');
tableBody.innerHTML = ''; // Clear existing content
let odd = true;
Expand Down Expand Up @@ -59,7 +60,6 @@ function generateTable(items, start, end, priceLimit, nameFilter, typeBlacklist,
odd = !odd;
}
i++;
console.log(item.name)
}
return true;
});
Expand Down

0 comments on commit a780d4b

Please sign in to comment.