diff --git a/app/client/models/QuerySet.ts b/app/client/models/QuerySet.ts index 269f1583..c4b8275a 100644 --- a/app/client/models/QuerySet.ts +++ b/app/client/models/QuerySet.ts @@ -163,8 +163,11 @@ export class DynamicQuerySet extends RowSource { // CB should be called asynchronously, since surprising hard-to-debug interactions can happen // if it's sometimes synchronous and sometimes not. + console.log(`======= called makeQuery: ${query.tableId}: ${JSON.stringify(query.filters)}`) //TODO JV TEMP DEBUG newQuerySet.fetchPromise.then(() => { + console.log(`======= promise RESOLVED: ${query.tableId}: ${JSON.stringify(query.filters)}`) //TODO JV TEMP DEBUG this._updateQuerySetDebounced(newQuerySet, cb); + }) .catch((err) => { cb(err, false); }); }