Skip to content

Commit

Permalink
/deploy uat
Browse files Browse the repository at this point in the history
  • Loading branch information
jbyrne committed Apr 1, 2024
1 parent c5b80cf commit 98de389
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
8 changes: 0 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Removed
### Fixed


## [4.17.1]
### Added
### Changed
### Removed
### Fixed
- issue-44: Fixed footprints and previews stay on map when not intended

## [4.17.0]
Expand All @@ -28,7 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- issue-48: Fixed collection resolution error handling
- issue-49: Removed unused Docker and Jenkins folders/files from HiTIDE-UI
- issue-52: Fixed missing thumbnail placeholder
- issue-44: Fixed footprints and previews stay on map when not intended

## [4.16.2]
### Added
Expand Down
5 changes: 3 additions & 2 deletions src/jpl/dijit/GranulesController.js
Original file line number Diff line number Diff line change
Expand Up @@ -747,10 +747,11 @@ define([
this.availableGranules = response.hits;
var _context = this;
var currentStateStore = _context.stateStore.query()
var currentGridStore = _context.gridStore.query()
var acceptableStateStoreIds = []
var stateStoreItemsToRemove = []
for(var i=0; i<response.items.length; i++) {
acceptableStateStoreIds.push(response.items[i]["meta"]["concept-id"])
for(var i=0; i<currentGridStore.length; i++) {
acceptableStateStoreIds.push(currentGridStore[i]["meta"]["concept-id"])
}
for(var j=0; j<currentStateStore.length; j++) {
if(!(acceptableStateStoreIds.includes(currentStateStore[j]["meta"]["concept-id"]))) {
Expand Down

0 comments on commit 98de389

Please sign in to comment.