Skip to content

Commit

Permalink
Add references to Overview tab in Nav
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Sep 7, 2023
1 parent 87f1bf3 commit a695ae7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/NavTabs/NavTabsSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const NavTabsSkeleton: FC<NavSkeletonProps> = ({ activeTab, projectName, openshi
<StyledNavigation className="navigation">
<li className={`overview ${activeTab == 'overview' ? 'active' : ''} deployLink`}>
<EnvironmentLink environmentSlug={openshiftProjectName} projectSlug={projectName} className="deployLink">
Overview
Environment Overview
</EnvironmentLink>
</li>
<li className={`deployments ${activeTab == 'deployments' ? 'active' : ''} deployLink`}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavTabs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const NavTabs = ({ activeTab, environment }) => (
projectSlug={environment.project.name}
className="deployLink"
>
Overview
Environment Overview
</EnvironmentLink>
</li>
<li className={`deployments ${activeTab == 'deployments' ? 'active' : ''} deployLink`}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const OrgNavTabsSkeleton: FC<NavSkeletonProps> = ({ activeTab }) => (
<li className={`overview ${activeTab == 'overview' ? 'active' : ''} linkContainer`}>
<a className="navLink">
<ReadOutlined className="icon" />
<span className="destination">Overview</span>
<span className="destination">Organization Overview</span>
</a>
</li>

Expand Down
2 changes: 1 addition & 1 deletion src/components/Organizations/NavTabs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const OrgNavTabs = ({ activeTab, organization }) => (
<li className={`overview ${activeTab == 'overview' ? 'active' : ''} linkContainer`}>
<OrganizationLink organizationName={organization.name} organizationSlug={organization.id} className="navLink">
<ReadOutlined className="icon" />
<span className="destination">Overview</span>
<span className="destination">Organization Overview</span>
</OrganizationLink>
</li>
<li className={`groups ${activeTab == 'groups' ? 'active' : ''} linkContainer`}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProjectNavTabs/ProjectNavTabsSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ProjectNavTabsSkeleton: FC<ProjectNavTabsSkeleton> = ({
activeTab == "overview" ? "active" : ""
} deployLink`}
>
<ProjectLink projectSlug={projectName}>Overview</ProjectLink>
<ProjectLink projectSlug={projectName}>Project Overview</ProjectLink>
</li>
<li
className={`variables ${
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProjectNavTabs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const ProjectNavTabs = ({ activeTab, project }) => {
activeTab === "overview" ? "active" : ""
} deployLink`}
>
<ProjectLink projectSlug={project.name}>Overview</ProjectLink>
<ProjectLink projectSlug={project.name}>Project Overview</ProjectLink>
</li>
{publicRuntimeConfig.LAGOON_UI_VIEW_ENV_VARIABLES == null &&
<li
Expand Down

0 comments on commit a695ae7

Please sign in to comment.