We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef336f8 commit 219b93eCopy full SHA for 219b93e
1 file changed
js/theoryLoader.js
@@ -63,7 +63,7 @@ document.addEventListener("DOMContentLoaded", function () {
63
const ipGridContainer = document.getElementById("ip-grid-container");
64
if (ipGridContainer) {
65
const totalRows = 64;
66
- let ipGridHTML = [...Array(7)].map((_, i) => `<div class="ip-grid-header">${Math.pow(2, 8 - (i + 1))}</div>`).join("");
+ let ipGridHTML = [...Array(7)].map((_, i) => `<div class="ip-grid-header">${Math.pow(2, 8 - i)}</div>`).join("");
67
68
const columns = [
69
{ prefix: 24, subnets: 1, step: 256 },
0 commit comments