Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco committed Aug 2, 2023
1 parent 86d5127 commit 1d8c98b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ <h4>Known Exploited Vulnerabilities Insights</h4>
const cellIndex = th.cellIndex;

th.addEventListener("click", () => {
const rows = Array.from(tBody.rows);
const rows = Array.from(tbody.rows);

while(tbody.rows.length > 0) {
tbody.deleteRow(-1);
Expand All @@ -235,7 +235,7 @@ <h4>Known Exploited Vulnerabilities Insights</h4>
return tr1Text.localeCompare(tr2Text)*-1;
});

tBody.append(...rows);
tbody.append(...rows);
});
}

Expand Down

0 comments on commit 1d8c98b

Please sign in to comment.