You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-12 22:57:38 +02:00
Fixed updating view when note is deleted
This commit is contained in:
@ -77,6 +77,12 @@ class Folder extends BaseItem {
|
||||
});
|
||||
}
|
||||
|
||||
static batchDelete(ids, options = null) {
|
||||
for (let i = 0; i < ids.length; i++) {
|
||||
this.delete(ids[i], options);
|
||||
}
|
||||
}
|
||||
|
||||
static conflictFolderTitle() {
|
||||
return _('Conflicts');
|
||||
}
|
||||
|
Reference in New Issue
Block a user