mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-01 10:22:30 +02:00
fix: headerNav should link to 'blog/', not 'blog' for consistency (#931)
fix: headerNav should link to 'blog/', not 'blog' for consistency
This commit is contained in:
parent
1a572757f1
commit
88904ab37b
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ class HeaderNav extends React.Component {
|
|||
href = link.href;
|
||||
} else if (link.blog) {
|
||||
// set link to blog url
|
||||
href = `${this.props.baseUrl}blog`;
|
||||
href = `${this.props.baseUrl}blog/`;
|
||||
}
|
||||
const itemClasses = classNames({
|
||||
siteNavGroupActive:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue