Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add links updates to homepage, about, and beta links. #683

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/scripts/components/common/page-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,12 +351,12 @@ function PageHeader() {
{globalNavRevealed && isMediumDown && <UnscrollableBody />}
<ComponentOverride with='headerBrand'>
<Brand>
<Link to='/'>
<GlobalMenuLink as='a' href='/' onClick={closeNavOnClick}>
<NasaLogo />
<span>Earthdata</span> <span>{appTitle}</span>
</Link>
</GlobalMenuLink>
<Tip content={`v${appVersion}`}>
<PageTitleSecLink to='/development'>Beta</PageTitleSecLink>
<PageTitleSecLink as='a' href='/development'>Beta</PageTitleSecLink>
</Tip>
</Brand>
</ComponentOverride>
Expand Down Expand Up @@ -449,7 +449,7 @@ function PageHeader() {
<GlobalNavBlockTitle>Meta</GlobalNavBlockTitle>
<GlobalMenu>
<li>
<GlobalMenuLink to={ABOUT_PATH} onClick={closeNavOnClick}>
<GlobalMenuLink as='a' href={ABOUT_PATH} onClick={closeNavOnClick}>
About
</GlobalMenuLink>
</li>
Expand Down
Loading