Skip to content

Commit

Permalink
refactor(robot-page): 🎉 update overview tables for on-premise case
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Aug 9, 2023
1 parent 07f99df commit 014d8c3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.10.6",
"version": "0.10.8",
"private": true,
"dependencies": {
"@emotion/css": "^11.10.6",
Expand Down
24 changes: 15 additions & 9 deletions src/pages/RobotPage/Overview/Overview.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { ReactElement } from "react";
import React, { Fragment, ReactElement } from "react";
import InformationWidget from "../../../components/InformationWidget/InformationWidget";
import ActivitiesWidget from "../../../components/ActivitiesWidget/ActivitiesWidget";
import Button from "../../../components/Button/Button";
Expand Down Expand Up @@ -67,14 +67,20 @@ export default function Overview({
<div className="col-span-full">
<WorkspacesTable responseRobot={responseRobot} />
</div>
<div className="col-span-full">
<BuildManagerStepsTable responseBuildManager={responseBuildManager} />
</div>
<div className="col-span-full">
<LaunchManagerStepsTable
responseLaunchManagers={responseLaunchManagers}
/>
</div>
{!envOnPremise && (
<Fragment>
<div className="col-span-full">
<BuildManagerStepsTable
responseBuildManager={responseBuildManager}
/>
</div>
<div className="col-span-full">
<LaunchManagerStepsTable
responseLaunchManagers={responseLaunchManagers}
/>
</div>
</Fragment>
)}
</div>
);
}

0 comments on commit 014d8c3

Please sign in to comment.