Skip to content

Commit

Permalink
Fix geosolutions-it#10318 fix details load if value is NODATA (geosol…
Browse files Browse the repository at this point in the history
  • Loading branch information
MV88 authored May 14, 2024
1 parent d8ab7af commit 4c314d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/epics/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export const storeDetailsInfoEpic = (action$, store) =>
detailsSettings = {};
}

if (!details || details.value === EMPTY_RESOURCE_VALUE) {
if (!details || details === EMPTY_RESOURCE_VALUE) {
return Observable.empty();
}
return Observable.from([
Expand Down

0 comments on commit 4c314d5

Please sign in to comment.