From 4d1ba527d4887d165ee35ec232e4755b37c33579 Mon Sep 17 00:00:00 2001 From: shri Date: Tue, 3 Dec 2024 06:42:06 +0100 Subject: [PATCH] Add GitLab to tools and sort by label --- frontend/src/components/icps/AgentForm.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/icps/AgentForm.tsx b/frontend/src/components/icps/AgentForm.tsx index 26a260cb..43d24763 100644 --- a/frontend/src/components/icps/AgentForm.tsx +++ b/frontend/src/components/icps/AgentForm.tsx @@ -132,6 +132,7 @@ const multiSelectVariants = cva( const stackList = [ { value: "GitHub Actions", label: "GitHub Actions" }, + { value: "GitLab", label: "GitLab" }, { value: "Docker", label: "Docker" }, { value: "Kubernetes", label: "Kubernetes" }, { value: "GitOps", label: "GitOps" }, @@ -166,6 +167,7 @@ const stackList = [ { value: "Okta", label: "Okta" }, { value: "Auth0", label: "Auth0" }, ] +stackList.sort((a, b) => a.label.localeCompare(b.label)) const processList = [ { value: "Code Review", label: "Code Review" },