diff --git a/site/component/Header/index.jsx b/site/component/Header/index.jsx index 10f8e6a98d..9950a70559 100644 --- a/site/component/Header/index.jsx +++ b/site/component/Header/index.jsx @@ -78,7 +78,8 @@ export default class Header extends React.Component { render() { const routes = this.props.routes; - const activeMenuItem = routes[1].path || 'home'; + let activeMenuItem = routes[1].path || 'home'; + activeMenuItem = activeMenuItem === 'components' ? 'docs/react' : activeMenuItem; const options = Object.keys(componentsList).map((key) => { return componentsList[key];