Merge remote-tracking branch 'origin/master'

This commit is contained in:
zadam 2021-07-21 22:07:13 +02:00
commit 74d0626dc9

View File

@ -41,6 +41,11 @@ export default class MainTreeExecutors extends Component {
async createNoteAfterCommand() {
const node = this.tree.getActiveNode();
if (!node) {
return;
}
const parentNotePath = treeService.getNotePath(node.getParent());
const isProtected = await treeService.getParentProtectedStatus(node);