Skip to content

Commit

Permalink
feat(version): release 0.36.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Feb 23, 2024
1 parent f1b252d commit 78454a8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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.36.1",
"version": "0.36.2",
"private": true,
"scripts": {
"dev": "GENERATE_SOURCEMAP=false react-scripts start",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export default function EnvironmentMainLabels(): ReactElement {
<EnvironmentTitle />
<EnvironmentType />
</span>
<div className="flex items-center gap-3.5">
{/* <div className="flex items-center gap-3.5">
<EnvironmentObjectLabels />
</div>
</div> */}
</div>
);
}
10 changes: 5 additions & 5 deletions src/contexts/RobotContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default ({ children }: any) => {
!applicationMode && handleGetBuildManager();
} else if (!responseLaunchManagers) {
!applicationMode && handleGetLaunchManagers();
} else if (responseRobot?.physicalInstance && !responsePhysicalInstance) {
} else if (!responseRobot?.physicalInstance) {
handleGetPhysicalInstance();
}

Expand Down Expand Up @@ -362,9 +362,9 @@ export default ({ children }: any) => {
if (isSettedCookie && typeof connectionsReducer?.vdi === "boolean") {
if (
connectionsReducer?.vdi &&
responsePhysicalInstance?.federationPhase === "Connected" &&
responsePhysicalInstance?.multicastPhase === "Connected" &&
responsePhysicalInstance?.phase === "Connected"
responsePhysicalInstance?.connectionStatus === "Connected" &&
responsePhysicalInstance?.k8sStatus === "Connected" &&
responsePhysicalInstance?.status === "Connected"
) {
dispatcher({
type: "physicalIDE",
Expand Down Expand Up @@ -397,7 +397,7 @@ export default ({ children }: any) => {
await getPhysicalInstancesFC(
false,
false,
responseRobot?.physicalInstance,
robotData?.step1?.details?.physicalInstanceName,
),
);
}
Expand Down

0 comments on commit 78454a8

Please sign in to comment.