fix reloading frontend after erasing notes in firefox, fixes #2221

This commit is contained in:
zadam 2021-10-12 19:47:44 +02:00
parent f5dc05e79a
commit 1cdd644b8f
2 changed files with 5 additions and 1 deletions

View file

@ -26,7 +26,7 @@
"dependencies": {
"archiver": "5.3.0",
"async-mutex": "0.3.2",
"axios": "0.22.0",
"axios": "0.23.0",
"better-sqlite3": "7.4.3",
"body-parser": "1.19.0",
"chokidar": "3.5.2",

View file

@ -109,6 +109,10 @@ async function deleteNotes(branchIdsToDelete) {
}
}
if (eraseNotes) {
utils.reloadFrontendApp("erasing notes requires reload");
}
return true;
}