Skip to content

Commit

Permalink
Fix #10318 fix details load if value is NODATA (#10319) (#10323)
Browse files Browse the repository at this point in the history
  • Loading branch information
MV88 committed May 15, 2024
1 parent e351d7b commit fac4616
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 fac4616

Please sign in to comment.