Skip to content

Commit 36c64da

Browse files
fix(homepage): fixing homepage title not respecting value from app-config.yaml (#1213)
* fix(homepage): respect title received from configuration Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com> * adding changeset Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com> --------- Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>
1 parent 976ec8a commit 36c64da

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@red-hat-developer-hub/backstage-plugin-dynamic-home-page': patch
3+
---
4+
5+
Fixed homepage title which was not respecting the title received through configuration.

workspaces/homepage/plugins/dynamic-home-page/src/components/HomePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const HomePage = (props: HomePageProps) => {
4848

4949
return (
5050
<Page themeId="home">
51-
<Header {...props} title="Welcome back!" />
51+
<Header title="Welcome back!" {...props} />
5252
<Content>
5353
{filteredAndSortedHomePageCards.length === 0 ? (
5454
<EmptyState

0 commit comments

Comments
 (0)