fix(scaffolder): show template-specific title in browser tab (#32343)

* fix(scaffolder): show template-specific title in browser tab

Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>

* adding changeset

Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>

* updating api report

Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>

* prefixing  Create new

Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>

* updating the report

Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>

---------

Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>
This commit is contained in:
Mitesh Kumar
2026-02-03 19:33:02 +05:30
committed by GitHub
parent 2f51676452
commit 4e581a66e5
4 changed files with 14 additions and 1 deletions
@@ -138,7 +138,13 @@ export const TemplateWizardPage = (props: TemplateWizardPageProps) => {
<AnalyticsContext attributes={{ entityRef: templateRef }}>
<Page themeId="website">
<Header
pageTitleOverride={t('templateWizardPage.pageTitle')}
pageTitleOverride={
manifest?.title
? t('templateWizardPage.templateWithTitle', {
templateTitle: manifest.title,
})
: t('templateWizardPage.pageTitle')
}
title={t('templateWizardPage.title')}
subtitle={t('templateWizardPage.subtitle')}
{...props.headerOptions}
+1
View File
@@ -358,6 +358,7 @@ export const scaffolderTranslationRef = createTranslationRef({
subtitle:
'Create new software components using standard templates in your organization',
pageTitle: 'Create a new component',
templateWithTitle: 'Create new {{templateTitle}}',
pageContextMenu: {
editConfigurationTitle: 'Edit Configuration',
},