fix: navbar external links not appearing.

This commit is contained in:
Hossein Mehrabi
2022-10-09 16:27:39 +03:30
parent 4ac86d4aa0
commit fc0bed683f
2 changed files with 1 additions and 4 deletions
-3
View File
@@ -70,9 +70,6 @@ const config = {
},
items: [
{
type: 'doc',
docId: 'index',
position: 'left',
href: 'https://blog.codex.storage/',
label: 'Blog',
},
+1 -1
View File
@@ -51,7 +51,7 @@ export default function NavbarContent(): JSX.Element {
const localeDropdown = items.find((item) => item.type === 'localeDropdown')
const links = items.filter(
(item) => item.type === 'doc' || !!(item as any).to,
(item) => item.type === 'doc' || !!(item as any).to || !!item.href,
)
const mobileSidebar = useNavbarMobileSidebar()