Skip to content

Commit

Permalink
Merge pull request #74 from geostreams/fix/search-markers
Browse files Browse the repository at this point in the history
Fixed search page would not show sensor markers on first render.
  • Loading branch information
max-zilla authored Apr 25, 2022
2 parents e147f11 + ca7fca1 commit e701698
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions packages/geostreaming/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 3.9.3 - 2022-03-07

### Fixed
- Search page would not show sensor markers on first render.

## 3.9.2 - 2022-02-24

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions packages/geostreaming/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@geostreams/geostreaming",
"version": "3.9.2",
"version": "3.9.3",
"main": "src/index.jsx",
"author": "NCSA",
"publishConfig": {
Expand All @@ -14,7 +14,7 @@
},
"dependencies": {
"@date-io/date-fns": "1.3.13",
"@geostreams/core": "^3.6.0",
"@geostreams/core": "^3.9.2",
"@material-ui/pickers": "^3.3.10",
"clsx": "^1.1.1",
"d3": "~5.16.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/geostreaming/src/containers/Search/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const Search = (props: Props) => {
}

setFilteredFeatures(updatedFeatures);
}, [filters, custom_location]);
}, [features, filters, custom_location]);



Expand Down

0 comments on commit e701698

Please sign in to comment.