mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-23 00:22:19 +01:00
fix: project settings title (#6011)
Small fix to the project settings title, correcting it and making it consistent.
This commit is contained in:
parent
e3fb3fd0be
commit
13a9b1bc13
@ -19,7 +19,7 @@ export const DeleteProjectForm = ({ featureCount }: IDeleteProjectForm) => {
|
||||
return (
|
||||
<FormTemplate
|
||||
loading={loading}
|
||||
title='Delete Project'
|
||||
title='Delete project'
|
||||
description=''
|
||||
documentationLink='https://docs.getunleash.io/reference/projects'
|
||||
documentationLinkLabel='Projects documentation'
|
||||
|
@ -113,7 +113,7 @@ export const UpdateProject = ({ project }: IUpdateProject) => {
|
||||
<StyledContainer isPro={isPro()}>
|
||||
<FormTemplate
|
||||
loading={loading}
|
||||
title='General Settings'
|
||||
title='General settings'
|
||||
description='Projects allows you to group feature toggles together in the management UI.'
|
||||
documentationLink='https://docs.getunleash.io/reference/projects'
|
||||
documentationLinkLabel='Projects documentation'
|
||||
|
@ -24,7 +24,7 @@ export const Settings = () => {
|
||||
if (isOss()) {
|
||||
return (
|
||||
<PageContent
|
||||
header={<PageHeader title='Access' />}
|
||||
header={<PageHeader title='General settings' />}
|
||||
sx={{ justifyContent: 'center' }}
|
||||
>
|
||||
<PremiumFeature feature='project-settings' />
|
||||
@ -34,7 +34,7 @@ export const Settings = () => {
|
||||
|
||||
if (!hasAccess([UPDATE_PROJECT, PROJECT_SETTINGS_READ], projectId)) {
|
||||
return (
|
||||
<PageContent header={<PageHeader title='Access' />}>
|
||||
<PageContent header={<PageHeader title='General settings' />}>
|
||||
<Alert severity='error'>
|
||||
You need project owner permissions to access this section.
|
||||
</Alert>
|
||||
|
Loading…
Reference in New Issue
Block a user