fix "cut to note", closes #2895, #1182

This commit is contained in:
zadam
2022-06-03 22:05:18 +02:00
parent 8fcc76ad6d
commit 5fbaed61c1
6 changed files with 27 additions and 12 deletions

View File

@@ -248,6 +248,13 @@ class NoteContext extends Component {
ntxId: this.ntxId
}));
}
async getTypeWidget() {
return new Promise(resolve => appContext.triggerCommand('executeWithTypeWidget', {
resolve,
ntxId: this.ntxId
}));
}
}
export default NoteContext;