1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

Desktop, Mobile: Resolves #12594: Move the conflicts folder to the top of the notebook list to improve visibility (#12688)

This commit is contained in:
mrjo118
2025-07-11 10:59:26 +01:00
committed by GitHub
parent a15bad37b1
commit 35e189ef6e

View File

@@ -357,7 +357,7 @@ export default class Folder extends BaseItem {
if (options && options.includeConflictFolder) {
const conflictCount = await Note.conflictedCount();
if (conflictCount) output.push(this.conflictFolder());
if (conflictCount) output.unshift(this.conflictFolder());
}
return output;