Fix for Search index not updated during create
This commit is contained in:
parent
9976842e45
commit
3300d42866
@ -321,7 +321,9 @@ module.exports = {
|
|||||||
return self.exists(entryPath).then((docExists) => {
|
return self.exists(entryPath).then((docExists) => {
|
||||||
if (!docExists) {
|
if (!docExists) {
|
||||||
return self.makePersistent(entryPath, contents).then(() => {
|
return self.makePersistent(entryPath, contents).then(() => {
|
||||||
return self.updateCache(entryPath)
|
return self.updateCache(entryPath).then(entry => {
|
||||||
|
return search.add(entry)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
return Promise.reject(new Error('Entry already exists!'))
|
return Promise.reject(new Error('Entry already exists!'))
|
||||||
|
@ -61,9 +61,9 @@ block content
|
|||||||
aside.stickyscroll(data-margin-top=40)
|
aside.stickyscroll(data-margin-top=40)
|
||||||
.sidebar-label
|
.sidebar-label
|
||||||
i.icon-th-list
|
i.icon-th-list
|
||||||
span Contents
|
span Page Contents
|
||||||
ul.sidebar-menu
|
ul.sidebar-menu
|
||||||
li: a(href='#root', title='Start') Start
|
li: a(href='#root', title='Top of Page') Top
|
||||||
+tocMenu(pageData.tree)
|
+tocMenu(pageData.tree)
|
||||||
|
|
||||||
.column
|
.column
|
||||||
|
Loading…
Reference in New Issue
Block a user