Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Connor committed Sep 25, 2024
1 parent 3a58ca5 commit 0f2201d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/skins/classic/views/js/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -1084,8 +1084,9 @@ function initPage() {
changedMonitors.slice().reverse().forEach(function(item, index, object) {
changedMonitors.splice(object.length - 1 - index, 1);
// When changing monitor, this may fire after we have replace the monitor html
if (document.getElementById('monitor'+item))
if (document.getElementById('monitor'+item)) {
monitorsSetScale(item);
}
});
}
}, 100);
Expand Down

0 comments on commit 0f2201d

Please sign in to comment.