You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-23 22:36:32 +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:
@@ -357,7 +357,7 @@ export default class Folder extends BaseItem {
|
|||||||
|
|
||||||
if (options && options.includeConflictFolder) {
|
if (options && options.includeConflictFolder) {
|
||||||
const conflictCount = await Note.conflictedCount();
|
const conflictCount = await Note.conflictedCount();
|
||||||
if (conflictCount) output.push(this.conflictFolder());
|
if (conflictCount) output.unshift(this.conflictFolder());
|
||||||
}
|
}
|
||||||
|
|
||||||
return output;
|
return output;
|
||||||
|
|||||||
Reference in New Issue
Block a user