FIX: prevents race condition where the same report is loaded multiple times (#6953)
This commit is contained in:
parent
db76e5a368
commit
0e1862013a
|
@ -74,9 +74,7 @@ export default {
|
|||
.finally(() => {
|
||||
_processing--;
|
||||
|
||||
// when a request is done we want to start processing queue
|
||||
// without waiting for debouncing
|
||||
debounce(this, this._processQueue, DEBOUNCING_DELAY, true);
|
||||
debounce(this, this._processQueue, DEBOUNCING_DELAY);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue