You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-12 22:57:38 +02:00
Desktop: Fix to update tag list when note is deleted. (#2554)
* Ensure tag list updated when note is deleted. Add integration tests. * Revert whitespace changes.
This commit is contained in:
@ -28,7 +28,8 @@ const reduxSharedMiddleware = async function(store, next, action) {
|
||||
refreshTags = true;
|
||||
}
|
||||
|
||||
if (action.type === 'NOTE_SELECT' ||
|
||||
if (action.type === 'NOTE_DELETE' ||
|
||||
action.type === 'NOTE_SELECT' ||
|
||||
action.type === 'NOTE_SELECT_TOGGLE' ||
|
||||
action.type === 'NOTE_SET_NEW_ONE') {
|
||||
let noteTags = [];
|
||||
|
Reference in New Issue
Block a user