Skip to content

Commit f77d4d6

Browse files
Jakob Schlanstedtwerererer
authored andcommitted
fix(note_autocomplete): fix wrong type of target
1 parent 9cb0e6a commit f77d4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/client/src/services/note_autocomplete.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ function initNoteAutocomplete($el: JQuery<HTMLElement>, options?: Options) {
488488
suggestion.action === SuggestionAction.CreateNoteIntoPath ||
489489
suggestion.action === SuggestionAction.CreateAndLinkNoteIntoPath
490490
) {
491-
target = "path";
491+
target = "into";
492492
}
493493

494494
const { note } = await noteCreateService.createNote(

0 commit comments

Comments
 (0)