1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

CLI: Fixes #1100: New folders were no longer being shown in list

This commit is contained in:
Laurent Cozic 2019-01-10 19:17:38 +00:00
parent 8268c3edba
commit 7c3e8547de

View File

@ -139,7 +139,8 @@ class FolderListWidget extends ListWidget {
const orderFolders = (parentId) => {
for (let i = 0; i < this.folders.length; i++) {
const f = this.folders[i];
if (f.parent_id === parentId) {
const folderParentId = f.parent_id ? f.parent_id : '';
if (folderParentId === parentId) {
newItems.push(f);
if (this.folderHasChildren_(this.folders, f.id)) orderFolders(f.id);
}