Skip to content

Commit

Permalink
Fix adding places from thesaurus
Browse files Browse the repository at this point in the history
  • Loading branch information
Angi-Kinas committed Jul 31, 2024
1 parent 1a5bb54 commit 0c5bd5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class FormFieldSpatialExtentComponent implements OnInit {
this.keywordsLinkedToExtents[keyword?.key] = {
placeKeyword: keyword,
spatialExtents: {
bbox: bbox.length >= 0 ? bbox : coordsBbox,
bbox: bbox?.length >= 0 ? bbox : coordsBbox,
geometries: geometries,
description: keyword.label,
},
Expand Down

0 comments on commit 0c5bd5d

Please sign in to comment.