Skip to content

Commit

Permalink
feat(version): release 0.38.3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Mar 7, 2024
1 parent 235195e commit eb9844d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
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.38.2",
"version": "0.38.3",
"private": true,
"scripts": {
"dev": "GENERATE_SOURCEMAP=false react-scripts start",
Expand Down
10 changes: 10 additions & 0 deletions src/components/SidebarLists/SidebarListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,16 @@ export default function SidebarListItem({
}
break;
case "robot":
if (
deploy &&
data?.step1?.launchContainers?.find((cont: any) => {
return cont.container.status === "Creating";
})
) {
return toast.error(
"Deploy is not ready now. Please wait until the deploy is ready.",
);
}
setSidebarState({ ...sidebarState, isOpen: false });

if (deploy) {
Expand Down

0 comments on commit eb9844d

Please sign in to comment.