Tom Xu
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
site/theme/template/Layout/Header/Navigation.tsx
|
|
@ -32,6 +32,7 @@ export default ({ |
|
|
|
onLangChange, |
|
|
|
onDirectionChange, |
|
|
|
}: NavigationProps) => { |
|
|
|
const [isGitee, setIsGitee] = React.useState(false); |
|
|
|
const menuMode = isMobile ? 'inline' : 'horizontal'; |
|
|
|
|
|
|
|
const module = pathname.split('/').slice(0, -1).join('/'); |
|
|
@ -68,7 +69,9 @@ export default ({ |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
const isGitee = document.location.host.indexOf('gitee') !== -1; |
|
|
|
React.useEffect(() => { |
|
|
|
setIsGitee(document.location.host.indexOf('gitee') !== -1); |
|
|
|
}, []); |
|
|
|
|
|
|
|
return ( |
|
|
|
<Menu |
|
|
|