File tree Expand file tree Collapse file tree
web/src/components/alerting Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { PageSection , Title } from '@patternfly/react-core' ;
21import type { FC } from 'react' ;
32import { lazy } from 'react' ;
43import { useTranslation } from 'react-i18next' ;
5- import { HorizontalNav , useActivePerspective } from '@openshift-console/dynamic-plugin-sdk' ;
4+ import {
5+ HorizontalNav ,
6+ ListPageHeader ,
7+ useActivePerspective ,
8+ } from '@openshift-console/dynamic-plugin-sdk' ;
69
710const AlertsPage = lazy (
811 ( ) => import ( /* webpackChunkName: "AlertsPage" */ '../alerting/AlertsPage' ) ,
@@ -50,10 +53,8 @@ const AlertingPage: FC = () => {
5053
5154 return (
5255 < >
53- < PageSection hasBodyWrapper = { false } >
54- < Title headingLevel = "h1" > { t ( 'Alerting' ) } </ Title >
55- < HorizontalNav contextId = { contextId } pages = { pages } />
56- </ PageSection >
56+ < ListPageHeader title = { t ( 'Alerting' ) } />
57+ < HorizontalNav contextId = { contextId } pages = { pages } />
5758 </ >
5859 ) ;
5960} ;
You can’t perform that action at this time.
0 commit comments