Skip to content

Commit d1a75a3

Browse files
authored
fix: add header to the Notifications page (#1358)
FLPATH-1153: add header to the Notifications page Fixes: FLPATH-1153 Signed-off-by: Marek Libra <[email protected]>
1 parent 144d678 commit d1a75a3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

plugins/notifications/src/components/NotificationsPage/NotificationsPage.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { useParams } from 'react-router-dom';
33

4-
import { Page, RoutedTabs } from '@backstage/core-components';
4+
import { Content, Header, Page, RoutedTabs } from '@backstage/core-components';
55

66
import { PersonalNotifications } from '../PersonalNotifications';
77
import { SendNotification } from '../SendNotification';
@@ -37,7 +37,10 @@ export const NotificationsPage = () => {
3737

3838
return (
3939
<Page themeId="tool">
40-
<RoutedTabs routes={routes} />
40+
<Header title="Notifications" />
41+
<Content noPadding>
42+
<RoutedTabs routes={routes} />
43+
</Content>
4144
</Page>
4245
);
4346
};

0 commit comments

Comments
 (0)