diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-06-08 12:10:44 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:21:01 +0100 |
commit | f4bbccb5214ff0dd2cbd7bc76973f64c06fc9509 (patch) | |
tree | fe6e7dbda13a8aef85247aba058b3231af890f96 /ishtar_common/models_common.py | |
parent | fcdab311103db69b15589e07354a8e91aec64c67 (diff) | |
download | Ishtar-f4bbccb5214ff0dd2cbd7bc76973f64c06fc9509.tar.bz2 Ishtar-f4bbccb5214ff0dd2cbd7bc76973f64c06fc9509.zip |
Geodata - geoforms: manage large number of related items - fix zoom - better + button
Diffstat (limited to 'ishtar_common/models_common.py')
-rw-r--r-- | ishtar_common/models_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index 3fcf4aea9..b13517f25 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -2397,7 +2397,7 @@ class GeoVectorData(Imported, OwnPerms): features = geojson_dct.pop("features") for idx in range(len(features)): feature = features[idx] - lbl = feature["properties"].pop("name") + lbl = self.name or "" feature["properties"]["name"] = lbl feature["properties"]["id"] = self.pk if precision is not None: |