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;

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

currentItems = currentItems.map(function (item) {