added device overview to the device support page
This commit is contained in:
parent
f72f5cd106
commit
a8feca1d75
1 changed files with 4 additions and 2 deletions
|
|
@ -15,6 +15,7 @@ import DeviceActions from "device/DeviceActions";
|
||||||
import { cloneDeep } from "lodash";
|
import { cloneDeep } from "lodash";
|
||||||
import { FindAvailablePositions } from "pbHelpers/DeviceAvailability";
|
import { FindAvailablePositions } from "pbHelpers/DeviceAvailability";
|
||||||
import LoadingScreen from "app/LoadingScreen";
|
import LoadingScreen from "app/LoadingScreen";
|
||||||
|
import DeviceOverview from "device/DeviceOverview";
|
||||||
|
|
||||||
interface TabPanelProps {
|
interface TabPanelProps {
|
||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
|
|
@ -190,10 +191,9 @@ export default function DeviceSupport() {
|
||||||
<PageContainer>
|
<PageContainer>
|
||||||
<Grid container justifyContent={"space-between"}>
|
<Grid container justifyContent={"space-between"}>
|
||||||
<Grid>
|
<Grid>
|
||||||
<SmartBreadcrumb deviceName={device.name()} state={{devicePageData: devicePageData}} />
|
<SmartBreadcrumb deviceName={device.name()} state={{devicePageData: devicePageData}} />
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
||||||
<DeviceActions
|
<DeviceActions
|
||||||
device={device}
|
device={device}
|
||||||
isPaused={false}
|
isPaused={false}
|
||||||
|
|
@ -210,6 +210,8 @@ export default function DeviceSupport() {
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
{/* <SmartBreadcrumb deviceName={device.name()} state={{devicePageData: devicePageData}} /> */}
|
{/* <SmartBreadcrumb deviceName={device.name()} state={{devicePageData: devicePageData}} /> */}
|
||||||
|
<DeviceOverview device={device} components={devicePageData.components}/>
|
||||||
|
<br/>
|
||||||
<Tabs
|
<Tabs
|
||||||
style={{ position: "sticky" }}
|
style={{ position: "sticky" }}
|
||||||
value={tabNumber}
|
value={tabNumber}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue