aboutsummaryrefslogtreecommitdiff
path: root/ext/js/data/database.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/data/database.js')
-rw-r--r--ext/js/data/database.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/data/database.js b/ext/js/data/database.js
index 026945ca..8b9e7354 100644
--- a/ext/js/data/database.js
+++ b/ext/js/data/database.js
@@ -265,7 +265,7 @@ export class Database {
* @param {?(completedCount: number, totalCount: number) => void} onProgress
* @returns {Promise<void>}
*/
- bulkDelete(objectStoreName, indexName, query, filterKeys=null, onProgress=null) {
+ bulkDelete(objectStoreName, indexName, query, filterKeys = null, onProgress = null) {
return new Promise((resolve, reject) => {
const transaction = this._readWriteTransaction([objectStoreName], resolve, reject);
const objectStore = transaction.objectStore(objectStoreName);