1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00

All: Refresh sidebar and notes when moving note outside of conflict folder

This commit is contained in:
Laurent Cozic
2020-11-19 16:21:24 +00:00
parent a40ab434ca
commit 61618fb37c
3 changed files with 14 additions and 4 deletions

View File

@@ -542,7 +542,11 @@ export default class BaseApplication {
}
if (action.type === 'NOTE_UPDATE_ONE') {
if (!action.changedFields.length || action.changedFields.includes('parent_id') || action.changedFields.includes('encryption_applied')) {
if (!action.changedFields.length ||
action.changedFields.includes('parent_id') ||
action.changedFields.includes('encryption_applied') ||
action.changedFields.includes('is_conflict')
) {
refreshFolders = true;
}
}