Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: v3 specification reference section not loading during dev mode #3004

Merged
merged 4 commits into from
May 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 18 additions & 20 deletions components/layout/DocsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,15 @@ export default function DocsLayout({ post, navItems = {}, children }: IDocsLayou
<span className='font-sans text-sm text-gray-800 antialiased'>
{`What is new in v${post.title}? Have a look at the `}
</span>
<Link href={post.releaseNoteLink}>
<a
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
release notes
</a>
<Link
href={post.releaseNoteLink}
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
release notes
</Link>
.
</div>
Expand All @@ -191,16 +190,15 @@ export default function DocsLayout({ post, navItems = {}, children }: IDocsLayou
</span>
<span className='font-sans text-sm text-gray-800 antialiased'>
Check&nbsp;
<Link href='https://www.asyncapi.com/blog?tags=Release+Notes'>
<a
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
list of release notes
</a>
<Link
href='https://www.asyncapi.com/blog?tags=Release+Notes'
target='_blank'
rel='noopener noreferrer'
className={
'cursor-pointer font-body text-sm font-medium leading-6 text-secondary-500 underline transition duration-150 ease-in-out hover:text-secondary-600 focus:text-gray-900 focus:outline-none'
}
>
list of release notes
</Link>
.
</span>
Expand Down
Loading