Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bokkypoobah committed Aug 17, 2024
1 parent edf13b2 commit 08cc529
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,6 @@ <h6 class="mt-4">Troubleshooting</h6>
};
}
Vue.set(this, 'events', events);
// this.$forceUpdate();
}
rows = parseInt(rows) + records.length;
done = records.length < this.DB_PROCESSING_BATCH_SIZE;
Expand Down Expand Up @@ -1920,6 +1919,9 @@ <h6 class="mt-4">Troubleshooting</h6>
const db = new Dexie(this.db.name);
db.version(this.db.version).stores(this.db.schemaDefinition);
const events = [];
const tokensCollator = {};
const approvalForAllsCollator = {};
const approvalsCollator = {};
let rows = 0;
let done = false;
do {
Expand All @@ -1930,7 +1932,6 @@ <h6 class="mt-4">Troubleshooting</h6>
events.push(event);
}
Vue.set(this, 'events', events);
// this.$forceUpdate();
rows = parseInt(rows) + records.length;
done = records.length < this.DB_PROCESSING_BATCH_SIZE;
} while (!done);
Expand All @@ -1943,6 +1944,8 @@ <h6 class="mt-4">Troubleshooting</h6>
const db = new Dexie(this.db.name);
db.version(this.db.version).stores(this.db.schemaDefinition);
const events = [];
const tokensCollator = {};
const approvalForAllsCollator = {};
let rows = 0;
let done = false;
do {
Expand All @@ -1953,7 +1956,6 @@ <h6 class="mt-4">Troubleshooting</h6>
events.push(event);
}
Vue.set(this, 'events', events);
// this.$forceUpdate();
rows = parseInt(rows) + records.length;
done = records.length < this.DB_PROCESSING_BATCH_SIZE;
} while (!done);
Expand Down

0 comments on commit 08cc529

Please sign in to comment.