You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2026-05-22 09:05:38 +02:00
Minor changes
This commit is contained in:
@@ -59,7 +59,11 @@ class ReportService {
|
||||
section.title = _('Folders');
|
||||
section.body = [];
|
||||
|
||||
let folders = await Folder.all();
|
||||
let folders = await Folder.all({
|
||||
orderBy: 'title',
|
||||
caseInsensitive: true,
|
||||
});
|
||||
|
||||
for (let i = 0; i < folders.length; i++) {
|
||||
let folder = folders[i];
|
||||
section.body.push(_('%s: %d notes', folders[i].title, await Folder.noteCount(folders[i].id)));
|
||||
|
||||
Reference in New Issue
Block a user