fix: allow insert unexisting internal link

This commit is contained in:
quenousimporte 2023-11-17 11:57:58 +01:00
parent c273542a50
commit f54f44b400
1 changed files with 1 additions and 1 deletions

View File

@ -2381,7 +2381,7 @@ function searchautocomplete()
{ {
selectnote().then(selected => selectnote().then(selected =>
{ {
insertautocomplete(selected.text); insertautocomplete(selected.text || selected);
}); });
} }