We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67e0e4 commit 9876170Copy full SHA for 9876170
Samples-Typescript/Filtering/filtering.ts
@@ -155,7 +155,6 @@ import {
155
156
dashboard.worksheets.forEach(function(worksheet) {
157
worksheet.getFiltersAsync().then(async (filtersForWorksheet) => {
158
- console.log(filtersForWorksheet);
159
const filterClearPromises = [];
160
161
filtersForWorksheet.forEach(function(filter) {
Samples/Filtering/filtering.js
@@ -144,7 +144,7 @@
144
145
// Same pattern as in fetchFilters, wait until all promises have finished
146
// before updating the UI state.
147
- Promise.all(filterClearPromises).then(function () {
+ Promise.allSettled(filterClearPromises).then(function () {
148
updateUIState(false);
149
});
150
0 commit comments