diff --git a/editor/src/search.js b/editor/src/search.js index 8114831..6368ed7 100644 --- a/editor/src/search.js +++ b/editor/src/search.js @@ -20,6 +20,12 @@ function startQuery(query) { .then(res => res.json()) .then(data => { let actualResult = []; + actualResult.push({ + ref: query, + title: 'Create new page "' + query + '"', + line: 'New page', + text: 'New page', + }) $.each(data.hits, (key, value) => { actualResult.push({ ref: value.fields.page,