Skip to content

Commit

Permalink
Add GitLab to tools and sort by label
Browse files Browse the repository at this point in the history
  • Loading branch information
shrir committed Dec 3, 2024
1 parent e218359 commit 4d1ba52
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/components/icps/AgentForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down Expand Up @@ -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" },
Expand Down

0 comments on commit 4d1ba52

Please sign in to comment.