Hi, I have a geomap panel with multiple map layers using external geojson files. Here is an example of geojson file:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"coordinates": [
[
[
-103,88,
33.23
],
[
-103.91,
32.25
],
[
-103.91,
33.23
],
[
-103,88,
32.25
],
]
],
"type": "Polygon"
}
}
]
}.
The coordinates are just examples. The âpropertiesâ is left empty on purpose because I donât need any other info on the tooltip. It was all fine before but we did an update to version v9.4.17 and this empty field causes the dashboard to crash with error: Cannot read properties of undefined (reading âvaluesâ). How should I make it work? Thank you!