mirror of
https://github.com/lizard-heart/obsidian-to-omnifocus.git
synced 2026-07-22 07:30:26 +00:00
fix typing of boolean arg
This commit is contained in:
parent
177af7f8be
commit
fe0ec58056
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ export default class TasksToOmnifocus extends Plugin {
|
|||
this.addSettingTab(new TasksToOmnifocusSettingTab(this.app, this));
|
||||
}
|
||||
|
||||
async addToOmnifocus(isSelection: bool, editor: Editor, view: MarkdownView) {
|
||||
async addToOmnifocus(isSelection: boolean, editor: Editor, view: MarkdownView) {
|
||||
var editorText;
|
||||
if (isSelection) {
|
||||
editorText = editor.getSelection();
|
||||
|
|
|
|||
Loading…
Reference in a new issue