Add missing const

pull/3195/merge
Isaac Connor 2024-10-24 18:29:23 -04:00
parent 73cebb5a77
commit bd6570d492
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ function getCmdResponse(respObj, respText) {
streamScale(currentScale);
}
console.log(streamStatus.fps);
fps = document.getElementById('fpsValue');
const fps = document.getElementById('fpsValue');
if (fps) {
fps.innerHTML = streamStatus.fps;
}