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

Fix page title sentence casing #2067

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion frontend/src/pages/clusterSettings/ClusterSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const ClusterSettings: React.FC = () => {

return (
<ApplicationsPage
title="Cluster Settings"
title="Cluster settings"
description="Update global settings for all users."
loaded={loaded}
empty={false}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/groupSettings/GroupSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ const GroupSettings: React.FC = () => {

return (
<ApplicationsPage
title="User and group settings"
title="User management"
description="Define OpenShift group membership for Data Science administrators and users."
loaded={loaded}
empty={false}
loadError={loadError}
errorMessage="Unable to load user and group settings"
errorMessage="Unable to load user management"
emptyMessage="No user and group settings found"
provideChildrenPadding
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ModelServingGlobal: React.FC = () => {

return (
<ApplicationsPage
title="Model serving"
title="Model Serving"
description="Manage and view the health and performance of your deployed models."
loaded
empty={servingRuntimes.length === 0 || inferenceServices.length === 0}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ProjectDetails: React.FC = () => {
description={description}
breadcrumb={
<Breadcrumb>
<BreadcrumbItem render={() => <Link to="/projects">Data science projects</Link>} />
<BreadcrumbItem render={() => <Link to="/projects">Data Science Projects</Link>} />
<BreadcrumbItem isActive>{displayName}</BreadcrumbItem>
</Breadcrumb>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const ProjectPipelineBreadcrumbPage: React.FC<ProjectPipelineDetailsProps> = ({
breadcrumbPath={[
<BreadcrumbItem
key="project-home"
render={() => <Link to={`/projects`}>Projects</Link>}
render={() => <Link to={`/projects`}>Data Science Projects</Link>}
/>,
<BreadcrumbItem
key="project-details"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ProjectView: React.FC = () => {

return (
<ApplicationsPage
title="Data science projects"
title="Data Science Projects"
description={
rbacLoaded
? `View your existing projects${allowCreate ? ' or create new projects' : ''}.`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const SpawnerPage: React.FC<SpawnerPageProps> = ({ existingNotebook }) => {
title={existingNotebook ? `Edit ${editNotebookDisplayName}` : 'Create workbench'}
breadcrumb={
<Breadcrumb>
<BreadcrumbItem render={() => <Link to="/projects">Data science projects</Link>} />
<BreadcrumbItem render={() => <Link to="/projects">Data Science Projects</Link>} />
<BreadcrumbItem
render={() => (
<Link to={`/projects/${currentProject.metadata.name}`}>{displayName}</Link>
Expand Down