fixed no title showing up on unsearchable posts
This commit is contained in:
parent
a671bdb8d5
commit
26cd110e39
1 changed files with 5 additions and 1 deletions
|
@ -241,7 +241,11 @@ export default class Page extends React.Component<PageProps, PageState> {
|
|||
fetchedPage.toc = fetched_content.toc
|
||||
? parseToc(fetched_content.toc)
|
||||
: undefined
|
||||
fetchedPage.title = fetchedPage?.title ? fetchedPage.title : "No title"
|
||||
fetchedPage.title = _isUnsearchable
|
||||
? map.unsearchable[url].title
|
||||
: fetchedPage?.title
|
||||
? fetchedPage.title
|
||||
: "No title"
|
||||
if (!_isUnsearchable) {
|
||||
fetchedPage.date = fetchedPage?.date
|
||||
? fetchedPage.date
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue