mirror of
https://github.com/apache/superset.git
synced 2026-05-10 10:25:51 +00:00
fix: Adds logging for SPA route navigation with React router (#21960)
This commit is contained in:
@@ -26,9 +26,9 @@ class DebouncedMessageQueue {
|
||||
}) {
|
||||
this.queue = [];
|
||||
this.sizeThreshold = sizeThreshold;
|
||||
this.delayThrehold = delayThreshold;
|
||||
this.delayThreshold = delayThreshold;
|
||||
|
||||
this.trigger = debounce(this.trigger.bind(this), this.delayThrehold);
|
||||
this.trigger = debounce(this.trigger.bind(this), this.delayThreshold);
|
||||
this.callback = callback;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user