fix "search in subtree", closes #941

This commit is contained in:
zadam 2020-04-04 22:49:30 +02:00
parent dfb97d64f7
commit 42128c007f
2 changed files with 3 additions and 10 deletions

View File

@ -167,10 +167,10 @@ export default class SearchBoxWidget extends BasicWidget {
this.$searchInput.val("");
}
searchInSubtreeEvent({noteId}) {
noteId = noteId || appContext.tabManager.getActiveTabNoteId();
searchInSubtreeEvent({node}) {
const noteId = node.data.noteId;
this.toggleInt(true);
this.showSearchEvent();
this.$searchInput.val(`@in=${noteId} @text*=*`);
}

View File

@ -390,19 +390,12 @@ async function saveLinks(note, content) {
const foundLinks = [];
if (note.type === 'text') {
console.time("LINKS");
content = findImageLinks(content, foundLinks);
content = findInternalLinks(content, foundLinks);
content = findExternalLinks(content, foundLinks);
content = findIncludeNoteLinks(content, foundLinks);
console.timeEnd("LINKS");
console.time("IMAGES");
content = await downloadImages(note.noteId, content);
console.timeEnd("IMAGES");
}
else if (note.type === 'relation-map') {
findRelationMapLinks(content, foundLinks);