mirror of
https://github.com/zadam/trilium.git
synced 2025-11-09 21:30:53 +08:00
fix(note_autocomplete): fix wrong type of target
This commit is contained in:
parent
a75f472235
commit
3d3d112d38
1 changed files with 1 additions and 1 deletions
|
|
@ -488,7 +488,7 @@ function initNoteAutocomplete($el: JQuery<HTMLElement>, options?: Options) {
|
|||
suggestion.action === SuggestionAction.CreateNoteIntoPath ||
|
||||
suggestion.action === SuggestionAction.CreateAndLinkNoteIntoPath
|
||||
) {
|
||||
target = "path";
|
||||
target = "into";
|
||||
}
|
||||
|
||||
const { note } = await noteCreateService.createNote(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue