small fixes to saved search

This commit is contained in:
zadam 2020-08-20 15:28:28 +02:00
parent 0b38e24185
commit 4d4d9f2000
2 changed files with 6 additions and 6 deletions

View file

@ -3,6 +3,7 @@ import toastService from "../services/toast.js";
import appContext from "../services/app_context.js";
import noteCreateService from "../services/note_create.js";
import utils from "../services/utils.js";
import treeCache from "../services/tree_cache.js";
const TPL = `
<div class="search-box">
@ -105,14 +106,13 @@ export default class SearchBoxWidget extends BasicWidget {
return;
}
// FIXME
let activeNote = appContext.tabManager.getActiveTabNote();
let parent = appContext.tabManager.getActiveTabNote();
if (activeNote.type === 'search') {
activeNote = activeNote.getParentNotes()[0];
if (parent.type === 'search') {
parent = await treeCache.getNote('root');
}
await noteCreateService.createNote(activeNote.noteId, {
await noteCreateService.createNote(parent.noteId, {
type: "search",
mime: "application/json",
title: searchString,

View file

@ -1,7 +1,7 @@
import TypeWidget from "./type_widget.js";
const TPL = `
<div class="note-detail-search note-detail-printable">
<div class="note-detail-search note-detail-printable" style="padding: 20px;">
<div style="display: flex; align-items: center; margin-right: 20px; margin-top: 15px;">
<strong>Search string: &nbsp; &nbsp;</strong>
<textarea rows="4" style="width: auto !important; flex-grow: 4" class="search-string form-control"></textarea>