bring back # of tcp clients in status

This commit is contained in:
andreas 2021-11-08 20:22:44 +01:00
parent b38c93b53f
commit 7c68747bd2
2 changed files with 5 additions and 1 deletions

View File

@ -39,6 +39,10 @@
<span class="label">wifi client IP</span>
<span class="value" id="clientIP">---</span>
</div>
<div class="row">
<span class="label"># TCP clients</span>
<span class="value" id="numClients">---</span>
</div>
</div>
<button id="reset">Reset</button>
</div>

View File

@ -518,7 +518,7 @@ window.addEventListener('load', function () {
createDashboard();
let statusPage=document.getElementById('statusPageContent');
if (statusPage){
let even=false;
let even=true;
for (let c in counters){
createCounterDisplay(statusPage,counters[c],c,even);
even=!even;