Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/indexer-scip.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN /tmp/install-ctags-alpine.sh
FROM golang:1.26-alpine AS scip-go-builder

RUN apk add --no-cache git
RUN go install github.com/sourcegraph/scip-go/cmd/scip-go@latest
RUN go install github.com/scip-code/scip-go/cmd/scip-go@latest

# Runtime stage
FROM alpine:3.23
Expand Down
8 changes: 4 additions & 4 deletions web/app/connections/ConnectionsClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ import {
Loader2,
CheckCircle2,
AlertCircle,
Github,
Gitlab,
GitBranch,
FolderGit2,
MoreVertical,
EyeOff,
Clock,
Pencil,
} from "lucide-react";
import { GithubIcon } from "@/components/GithubIcon";
import { GitlabIcon } from "@/components/GitlabIcon";

// Dropdown menu component for connection actions
function ConnectionActionMenu({
Expand Down Expand Up @@ -702,9 +702,9 @@ export default function ConnectionsClient() {
switch (type) {
case "github":
case "github_enterprise":
return <Github className="h-5 w-5" />;
return <GithubIcon className="h-5 w-5" />;
case "gitlab":
return <Gitlab className="h-5 w-5" />;
return <GitlabIcon className="h-5 w-5" />;
case "gitea":
return <FolderGit2 className="h-5 w-5" />;
case "bitbucket":
Expand Down
Loading