Skip to content

Commit 3283fbe

Browse files
committed
chore(scripts): fix record count
1 parent b41e183 commit 3283fbe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/makeTOC.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ async function addTocListeners(){
110110
}
111111
else if(anchor.getAttribute('class')=="subtype") anchor.remove();
112112
}
113-
if(isLocalhost) document.getElementById('toc').innerHTML += `<p>${count}/${subcount} total records</p>`;
114-
else document.getElementById('toc').innerHTML += `<p>${count} total records</p>`;
113+
// if(isLocalhost) document.getElementById('toc').innerHTML += `<p>${count}/${subcount} total records</p>`;
114+
// else
115+
document.getElementById('toc').innerHTML += `<p>${count} total records</p>`;
115116
}

0 commit comments

Comments
 (0)