Skip to content

Commit 1797fbf

Browse files
authored
Merge pull request #118 from modelcontextprotocol/ashwin/githublink
feat: add GitHub link to sidebar for bug reports and contributions
2 parents 8f4013c + ffc2966 commit 1797fbf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

client/src/components/Sidebar.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useState } from "react";
2-
import { Play, ChevronDown, ChevronRight, CircleHelp, Bug } from "lucide-react";
2+
import { Play, ChevronDown, ChevronRight, CircleHelp, Bug, Github } from "lucide-react";
33
import { Button } from "@/components/ui/button";
44
import { Input } from "@/components/ui/input";
55
import {
@@ -232,7 +232,7 @@ const Sidebar = ({
232232
setTheme(value as "system" | "light" | "dark")
233233
}
234234
>
235-
<SelectTrigger className="w-[120px]" id="theme-select">
235+
<SelectTrigger className="w-[100px]" id="theme-select">
236236
<SelectValue />
237237
</SelectTrigger>
238238
<SelectContent>
@@ -253,6 +253,11 @@ const Sidebar = ({
253253
<Bug className="w-4 h-4 text-gray-800" />
254254
</Button>
255255
</a>
256+
<a href="https://github.com/modelcontextprotocol/inspector" target="_blank" rel="noopener noreferrer">
257+
<Button variant="ghost" title="Report bugs or contribute on GitHub">
258+
<Github className="w-4 h-4 text-gray-800" />
259+
</Button>
260+
</a>
256261
</div>
257262
</div>
258263
</div>

0 commit comments

Comments
 (0)