Merge branch 'develop-1.0.0' of github.com:ant-design/ant-design into develop-1.0.0

This commit is contained in:
afc163
2016-05-10 14:44:58 +08:00
+2 -1
View File
@@ -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];