There was an error while loading. Please reload this page.
1 parent 06691dd commit f409b1cCopy full SHA for f409b1c
src/routes/gis/index.ts
@@ -127,7 +127,8 @@ const getFeatureFromItem = (
127
geoFilter?: turf.Polygon
128
) => {
129
if (mapping.geoField) {
130
- const geo = get(item, mapping.geoField.toLowerCase());
+ // removed the toLowerCase there, which may cause an issue
131
+ const geo = get(item, mapping.geoField);
132
if (geo) {
133
if (
134
!geoFilter ||
0 commit comments