1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-17 01:17:29 +02:00

chore: rename release management to release templates (#9564)

This commit is contained in:
David Leek 2025-03-18 14:52:47 +01:00 committed by GitHub
parent c5fa7c82fd
commit 890bbcaaa0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View File

@ -131,7 +131,7 @@ const PremiumFeatures = {
releaseManagement: { releaseManagement: {
plan: FeaturePlan.ENTERPRISE, plan: FeaturePlan.ENTERPRISE,
url: '', url: '',
label: 'Release management', label: 'Release templates',
}, },
}; };

View File

@ -164,7 +164,7 @@ export const NewInUnleash = ({
), ),
}, },
{ {
label: 'Release management', label: 'Release templates',
summary: 'Save time with release plans', summary: 'Save time with release plans',
icon: <StyledReleaseManagementIcon />, icon: <StyledReleaseManagementIcon />,
preview: <ReleaseManagementPreview />, preview: <ReleaseManagementPreview />,

View File

@ -269,7 +269,7 @@ exports[`returns all baseRoutes 1`] = `
], ],
}, },
"path": "/release-management", "path": "/release-management",
"title": "Release management", "title": "Release templates",
"type": "protected", "type": "protected",
}, },
{ {

View File

@ -284,7 +284,7 @@ export const routes: IRoute[] = [
// Release management/plans // Release management/plans
{ {
path: '/release-management', path: '/release-management',
title: 'Release management', title: 'Release templates',
component: ReleaseManagement, component: ReleaseManagement,
type: 'protected', type: 'protected',
menu: { main: true, mode: ['enterprise'] }, menu: { main: true, mode: ['enterprise'] },

View File

@ -15,7 +15,7 @@ import { PremiumFeature } from 'component/common/PremiumFeature/PremiumFeature';
import { RELEASE_PLAN_TEMPLATE_CREATE } from '@server/types/permissions'; import { RELEASE_PLAN_TEMPLATE_CREATE } from '@server/types/permissions';
export const ReleaseManagement = () => { export const ReleaseManagement = () => {
usePageTitle('Release management'); usePageTitle('Release templates');
const navigate = useNavigate(); const navigate = useNavigate();
const data = useReleasePlanTemplates(); const data = useReleasePlanTemplates();