kopia lustrzana https://gitlab.com/gridtracker.org/gridtracker
Fixed the NOT bugs as reported by a eslint
rodzic
19d22940db
commit
b43b31e656
|
@ -89,7 +89,6 @@ function makeParkFeature(park, active)
|
|||
}
|
||||
feature.key = park;
|
||||
feature.size = 1;
|
||||
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
|
@ -142,8 +141,10 @@ function getPotaParks()
|
|||
function uniqueArrayFromArray(input)
|
||||
{
|
||||
let unique = [];
|
||||
input.forEach((c) => {
|
||||
if (!unique.includes(c)) {
|
||||
input.forEach((c) =>
|
||||
{
|
||||
if (!unique.includes(c))
|
||||
{
|
||||
unique.push(c);
|
||||
}
|
||||
});
|
||||
|
|
Ładowanie…
Reference in New Issue