File tree 1 file changed +24
-18
lines changed
webpack/assets/javascripts/react_app/components/HostStatuses
1 file changed +24
-18
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import SkeletonLoader from '../common/SkeletonLoader';
10
10
import { STATUS } from '../../constants' ;
11
11
import { API_OPTIONS } from './HostStatusesConstants' ;
12
12
import { selectHostStatusesNames } from './HostStatusesSelectors' ;
13
+ import Head from '../Head/index' ;
13
14
14
15
import './HostStatuses.scss' ;
15
16
@@ -27,24 +28,29 @@ const HostStatuses = () => {
27
28
const statuses = useSelector ( state => selectHostStatusesNames ( state ) ) ;
28
29
29
30
return (
30
- < PageSection padding className = "host-statuses-page" >
31
- < Grid hasGutter >
32
- < GridItem span = { 12 } >
33
- < Title
34
- ouiaId = "host-status-overview-title"
35
- headingLevel = "h5"
36
- size = "xl"
37
- >
38
- { __ ( 'Host Status Overview' ) }
39
- </ Title >
40
- </ GridItem >
41
- < SkeletonLoader customSkeleton = { < Skeleton /> } status = { status } >
42
- { statuses . map ( ( name , i ) => (
43
- < Status key = { i } name = { name } />
44
- ) ) }
45
- </ SkeletonLoader >
46
- </ Grid >
47
- </ PageSection >
31
+ < >
32
+ < Head >
33
+ < title > { __ ( 'Host Statuses' ) } </ title >
34
+ </ Head >
35
+ < PageSection padding className = "host-statuses-page" >
36
+ < Grid hasGutter >
37
+ < GridItem span = { 12 } >
38
+ < Title
39
+ ouiaId = "host-status-overview-title"
40
+ headingLevel = "h5"
41
+ size = "xl"
42
+ >
43
+ { __ ( 'Host Status Overview' ) }
44
+ </ Title >
45
+ </ GridItem >
46
+ < SkeletonLoader customSkeleton = { < Skeleton /> } status = { status } >
47
+ { statuses . map ( ( name , i ) => (
48
+ < Status key = { i } name = { name } />
49
+ ) ) }
50
+ </ SkeletonLoader >
51
+ </ Grid >
52
+ </ PageSection >
53
+ </ >
48
54
) ;
49
55
} ;
50
56
You can’t perform that action at this time.
0 commit comments