Skip to content

Commit

Permalink
Add missing const
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Connor committed Oct 24, 2024
1 parent 73cebb5 commit bd6570d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/skins/classic/views/js/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit bd6570d

Please sign in to comment.