@@ -10,6 +10,7 @@ import { CorelibPubSub } from '@sofie-automation/corelib/dist/pubsub'
1010import { IngestRundownStatusSelect , IngestRundownStatusView } from './IngestRundownStatus'
1111import Row from 'react-bootstrap/Row'
1212import Col from 'react-bootstrap/Col'
13+ import Container from 'react-bootstrap/esm/Container'
1314
1415function StatusMenu ( ) {
1516 const { t } = useTranslation ( )
@@ -62,27 +63,29 @@ export default function Status(): JSX.Element {
6263 useSubscription ( CorelibPubSub . showStyleVariants , null , null )
6364
6465 return (
65- < div className = "mt-5 mx-5 has-statusbar" >
66- < Row >
67- < Col xs = { 12 } sm = { 4 } md = { 3 } lg = { 2 } >
68- < StatusMenu />
69- </ Col >
70- < Col xs = { 12 } sm = { 8 } md = { 9 } lg = { 10 } >
71- < Switch >
72- < Route path = "/testTools/timeline/:studioId" component = { TimelineView } />
73- < Route path = "/testTools/timeline" component = { TimelineStudioSelect } />
74- < Route path = "/testTools/mappings/:studioId" component = { MappingsView } />
75- < Route path = "/testTools/mappings" component = { MappingsStudioSelect } />
76- < Route path = "/testTools/timelinedatastore/:studioId" component = { TimelineDatastoreView } />
77- < Route path = "/testTools/timelinedatastore" component = { TimelineDatastoreStudioSelect } />
78- < Route path = "/testTools/devicetriggers/:peripheralDeviceId" component = { DeviceTriggersView } />
79- < Route path = "/testTools/devicetriggers" component = { DeviceTriggersDeviceSelect } /> { ' ' }
80- < Route path = "/testTools/ingestRundownStatus/:peripheralDeviceId" component = { IngestRundownStatusView } />
81- < Route path = "/testTools/ingestRundownStatus" component = { IngestRundownStatusSelect } />
82- < Redirect to = "/testTools/timeline" />
83- </ Switch >
84- </ Col >
85- </ Row >
86- </ div >
66+ < Container fluid className = "header-clear" >
67+ < div className = "mt-5 mx-5 has-statusbar" >
68+ < Row >
69+ < Col xs = { 12 } sm = { 4 } md = { 3 } lg = { 2 } >
70+ < StatusMenu />
71+ </ Col >
72+ < Col xs = { 12 } sm = { 8 } md = { 9 } lg = { 10 } >
73+ < Switch >
74+ < Route path = "/testTools/timeline/:studioId" component = { TimelineView } />
75+ < Route path = "/testTools/timeline" component = { TimelineStudioSelect } />
76+ < Route path = "/testTools/mappings/:studioId" component = { MappingsView } />
77+ < Route path = "/testTools/mappings" component = { MappingsStudioSelect } />
78+ < Route path = "/testTools/timelinedatastore/:studioId" component = { TimelineDatastoreView } />
79+ < Route path = "/testTools/timelinedatastore" component = { TimelineDatastoreStudioSelect } />
80+ < Route path = "/testTools/devicetriggers/:peripheralDeviceId" component = { DeviceTriggersView } />
81+ < Route path = "/testTools/devicetriggers" component = { DeviceTriggersDeviceSelect } /> { ' ' }
82+ < Route path = "/testTools/ingestRundownStatus/:peripheralDeviceId" component = { IngestRundownStatusView } />
83+ < Route path = "/testTools/ingestRundownStatus" component = { IngestRundownStatusSelect } />
84+ < Redirect to = "/testTools/timeline" />
85+ </ Switch >
86+ </ Col >
87+ </ Row >
88+ </ div >
89+ </ Container >
8790 )
8891}
0 commit comments