1
0
mirror of synced 2026-01-26 03:06:48 -05:00

Merge branch 'main' into repo-sync

This commit is contained in:
Octomerger Bot
2021-07-27 04:22:42 +10:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@@ -28,6 +28,10 @@ export const LanguagePicker = ({ variant }: Props) => {
</summary>
<div>
{langs.map((lang) => {
if (lang.wip) {
return null
}
return (
<Link
key={lang.code}
@@ -71,6 +75,10 @@ export const LanguagePicker = ({ variant }: Props) => {
</summary>
<Dropdown.Menu direction="sw">
{langs.map((lang) => {
if (lang.wip) {
return null
}
return (
<Dropdown.Item key={lang.code}>
<Link href={router.asPath} locale={lang.code} disableClientTransition={true}>

View File

@@ -1 +0,0 @@
- <code><span style="text-transform: uppercase">{{operation.verb}}</span> {{operation.requestPath}}</code> <a href="#{{operation.externalDocs.hash}}">{{operation.summary}}</a>