Gustavo Luigi 2023-06-06 08:38:28 -03:00
parent 41e1c6dcfa
commit 07bae3d32b
1 changed files with 2 additions and 2 deletions

View File

@ -147,8 +147,8 @@
let openInfoWindow = null; let openInfoWindow = null;


currentItems = currentItems.filter(function(item){ currentItems = currentItems.filter(function(item){
console.log(item.location); console.log(item.location, item[locationField] != undefined);
return item.location != undefined; return item[locationField] != undefined;
}); });


currentItems = currentItems.map(function (item) { currentItems = currentItems.map(function (item) {