fix params.txt

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-06-25 09:11:17 -04:00
parent 77db759d88
commit b650618b27
7 changed files with 20 additions and 19 deletions
+1 -1
View File
@@ -286,7 +286,7 @@ async function gallerySearch(evt) {
const findDuplicates = (arr, key) => {
const map = new Map();
return arr.filter(item => {
return arr.filter((item) => {
const value = item[key];
if (map.has(value)) return true;
map.set(value, true);