Skip to content

Commit 37daf72

Browse files
committed
add badges to deployment cards
1 parent 2c2cb89 commit 37daf72

File tree

13 files changed

+306
-48
lines changed

13 files changed

+306
-48
lines changed

apps/web/app/routes/ws/deployments/_components/CreateEnvironmentDialog.tsx renamed to apps/web/app/routes/ws/_components/CreateEnvironmentDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import {
3737
} from "~/components/ui/select";
3838
import { Textarea } from "~/components/ui/textarea";
3939
import { useWorkspace } from "~/components/WorkspaceProvider";
40-
import CelExpressionInput from "../../_components/CelExpiressionInput";
40+
import CelExpressionInput from "./CelExpiressionInput";
4141

4242
// Validation schema for environment creation
4343
const createEnvironmentSchema = z.object({

apps/web/app/routes/ws/_layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ const navigationGroups = [
5959
{
6060
label: "Orchestration",
6161
items: [
62-
{ title: "Projects", to: "/projects", icon: LayoutDashboard },
6362
{ title: "Deployments", to: "/deployments", icon: Rocket },
6463
{ title: "Environments", to: "/environments", icon: TreePine },
6564
{ title: "Runners", to: "/runners", icon: Cpu },
6665
{ title: "Policies", to: "/policies", icon: ShieldCheck },
66+
{ title: "Systems", to: "/systems", icon: LayoutDashboard },
6767
{ title: "Jobs", to: "/jobs", icon: Briefcase },
6868
],
6969
},

apps/web/app/routes/ws/deployments.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
import { Separator } from "~/components/ui/separator";
2222
import { SidebarTrigger } from "~/components/ui/sidebar";
2323
import { useWorkspace } from "~/components/WorkspaceProvider";
24-
import { CreateDeploymentDialog } from "./deployments/_components/CreateDeploymentDialog";
24+
import { CreateDeploymentDialog } from "./_components/CreateDeploymentDialog";
2525
import { LazyLoadDeploymentCard } from "./deployments/_components/DeploymentCard";
2626

2727
export function meta() {

0 commit comments

Comments
 (0)