Skip to content

Commit

Permalink
Link to documentation bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Max N committed Oct 6, 2022
1 parent 398904e commit 71d1d98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/api/parser/src/data/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ class Post {
}

// Allow for missing title, but give it one
if (!article.title) {
// Allow for missing title given as { '$': { type: 'text' } }, but set to 'Untitled'
if (!article.title || article.title.$) {
logger.debug('article missing title, substituting "Untitled"');
article.title = 'Untitled';
}
Expand Down
2 changes: 1 addition & 1 deletion src/web/docusaurus/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const config = async () => {
items: [
{
label: 'Documentation',
to: '/docs/overview',
to: '/overview',
},
{
label: 'Slack',
Expand Down

0 comments on commit 71d1d98

Please sign in to comment.