Skip to content

Commit e47b1d8

Browse files
authored
Merge pull request #200 from morinokami/patch-1
Restructure link buttons in sidebar to respect theme
2 parents 205e707 + d2e211a commit e47b1d8

File tree

1 file changed

+29
-28
lines changed

1 file changed

+29
-28
lines changed

client/src/components/Sidebar.tsx

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -371,36 +371,37 @@ const Sidebar = ({
371371
</Select>
372372

373373
<div className="flex items-center space-x-2">
374-
<a
375-
href="https://modelcontextprotocol.io/docs/tools/inspector"
376-
target="_blank"
377-
rel="noopener noreferrer"
378-
>
379-
<Button variant="ghost" title="Inspector Documentation">
380-
<CircleHelp className="w-4 h-4 text-gray-800" />
381-
</Button>
382-
</a>
383-
<a
384-
href="https://modelcontextprotocol.io/docs/tools/debugging"
385-
target="_blank"
386-
rel="noopener noreferrer"
387-
>
388-
<Button variant="ghost" title="Debugging Guide">
389-
<Bug className="w-4 h-4 text-gray-800" />
390-
</Button>
391-
</a>
392-
<a
393-
href="https://github.com/modelcontextprotocol/inspector"
394-
target="_blank"
395-
rel="noopener noreferrer"
374+
<Button variant="ghost" title="Inspector Documentation" asChild>
375+
<a
376+
href="https://modelcontextprotocol.io/docs/tools/inspector"
377+
target="_blank"
378+
rel="noopener noreferrer"
379+
>
380+
<CircleHelp className="w-4 h-4 text-foreground" />
381+
</a>
382+
</Button>
383+
<Button variant="ghost" title="Debugging Guide" asChild>
384+
<a
385+
href="https://modelcontextprotocol.io/docs/tools/debugging"
386+
target="_blank"
387+
rel="noopener noreferrer"
388+
>
389+
<Bug className="w-4 h-4 text-foreground" />
390+
</a>
391+
</Button>
392+
<Button
393+
variant="ghost"
394+
title="Report bugs or contribute on GitHub"
395+
asChild
396396
>
397-
<Button
398-
variant="ghost"
399-
title="Report bugs or contribute on GitHub"
397+
<a
398+
href="https://github.com/modelcontextprotocol/inspector"
399+
target="_blank"
400+
rel="noopener noreferrer"
400401
>
401-
<Github className="w-4 h-4 text-gray-800" />
402-
</Button>
403-
</a>
402+
<Github className="w-4 h-4 text-foreground" />
403+
</a>
404+
</Button>
404405
</div>
405406
</div>
406407
</div>

0 commit comments

Comments
 (0)