Skip to content

Commit

Permalink
Fixes Second Part
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamjajoo committed Oct 7, 2018
1 parent 4223226 commit 695b48f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/src/components/navbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class Navbar extends Component {
"",
// "Projects",
"GSoC",
"GCI",
"Team",
"Contribute",
"Contact Us"
Expand All @@ -69,6 +70,15 @@ class Navbar extends Component {
</NavbarItem>
);
}
if (path === "GCI") {
return (
<NavbarItem active={false} key={path}>
<Link to="http://gci.cloudcv.org" target="_blank">
{path}
</Link>
</NavbarItem>
);
}
let active = path.toLowerCase() === firstPath;
let formattedPath = path.toLowerCase().replace(/ /g, "-");
return (
Expand Down

0 comments on commit 695b48f

Please sign in to comment.