Skip to content

Commit

Permalink
fix abort unfinished query #3657
Browse files Browse the repository at this point in the history
  • Loading branch information
emilschn committed Feb 3, 2025
1 parent 19cb9e3 commit 0991ffb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export function handleSignalementsShared (context: any, requestResponse: any): a
export function handleFilters (context: any, ajaxurl: string): any {
clearScreen(context)

if (context.abortRequest === true) {
if (context.abortRequest !== null) {
context.abortRequest?.abort()
}

Expand Down

0 comments on commit 0991ffb

Please sign in to comment.