Add rest of three utils files to Matser (#370)

* 'minor change'
This commit is contained in:
Chris-MS-896
2021-01-13 17:49:06 -06:00
committed by GitHub
parent babda4d9cb
commit 9a1e8b2d87
6 changed files with 19 additions and 14 deletions

View File

@@ -192,7 +192,7 @@ export class NotebookContentClient {
const dir = xhr.response;
const item = NotebookUtil.createNotebookContentItem(dir.name, dir.path, dir.type);
item.parent = parent;
parent.children!.push(item);
parent.children?.push(item);
return item;
});
}