Skip to content

Commit

Permalink
#10577: Fix - GFI in identify popup does not trigger when one of the …
Browse files Browse the repository at this point in the history
…responses is an error (#10578)

(cherry picked from commit 64474f4)
  • Loading branch information
dsuren1 committed Oct 3, 2024
1 parent 6df41ed commit 449a60b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const withIdentifyRequest = mapPropsStream(props$ => {
}
})
)
.catch((e) => ({
.catch((e) => Observable.of({
error: e.data || e.statusText || e.status,
reqId,
queryParams,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const withIdentifyRequest = mapPropsStream(props$ => {
})
) : Observable.empty()
)
.catch((e) => ({
.catch((e) => Observable.of({
error: e.data || e.statusText || e.status,
reqId,
queryParams,
Expand Down

0 comments on commit 449a60b

Please sign in to comment.