Skip to content

Commit

Permalink
Fixed issue with advanced search not working for particular actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwinderg committed Dec 6, 2024
1 parent 4ace3ac commit 90e816d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,8 @@ function AdvancedSearch() {
css={buttonStyles}
disabled={searchLoading}
onClick={(_ev) => {
mapView?.popup?.close();
console.log('mapView: ', mapView?.popup);
if (mapView?.popup?.close) mapView.popup.close();
executeFilter();
}}
>
Expand Down

0 comments on commit 90e816d

Please sign in to comment.