We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdff8d1 commit 31668ebCopy full SHA for 31668eb
src/dashboard/Data/Browser/Browser.react.js
@@ -949,7 +949,12 @@ class Browser extends DashboardView {
949
}
950
951
async fetchData(source, filters = new List()) {
952
+ this.loadingFilters = JSON.stringify(filters.toJSON());
953
const data = await this.fetchParseData(source, filters);
954
+ if (this.loadingFilters !== JSON.stringify(filters.toJSON())) {
955
+ return;
956
+ }
957
+
958
const filteredCounts = { ...this.state.filteredCounts };
959
if (filters.size > 0) {
960
if (this.state.isUnique) {
0 commit comments