Skip to content

Commit

Permalink
Merge pull request #3658 from MTES-MCT/hotfix/3657-abort-query-list-s…
Browse files Browse the repository at this point in the history
…ignalement

[BO - Filtres signalements] Arrêt de requête en cours lors de mise à jour des filtres
  • Loading branch information
numew authored Feb 3, 2025
2 parents 19cb9e3 + 0991ffb commit 60931d2
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 60931d2

Please sign in to comment.