From 2d4d2fd595e4369c4f8ec5fe25c52aa6b3eac33f Mon Sep 17 00:00:00 2001 From: akrherz Date: Tue, 4 Mar 2025 11:46:30 -0600 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Address=20deepsource=20concern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/current/webcam-static.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/current/webcam-static.js b/htdocs/current/webcam-static.js index 236f5e25a..47e2d7067 100644 --- a/htdocs/current/webcam-static.js +++ b/htdocs/current/webcam-static.js @@ -71,7 +71,7 @@ Ext.onReady(() => { imagestore.on('load', (_store, records) => { const data = Array(); Ext.each(records, (record) => { - const checked = (disableStore.find('cid', record.get("cid")) == -1); + const checked = (disableStore.find('cid', record.get("cid")) === -1); data.push({ boxLabel: Number(record.get("cid").substr(5, 3)) + " " + record.get("name"), name: record.get("cid"),