Merge pull request #200 from morinokami/patch-1

Restructure link buttons in sidebar to respect theme
This commit is contained in:
Ola Hungerford
2025-03-28 06:50:47 -07:00
committed by GitHub

View File

@@ -371,36 +371,37 @@ const Sidebar = ({
</Select> </Select>
<div className="flex items-center space-x-2"> <div className="flex items-center space-x-2">
<a <Button variant="ghost" title="Inspector Documentation" asChild>
href="https://modelcontextprotocol.io/docs/tools/inspector" <a
target="_blank" href="https://modelcontextprotocol.io/docs/tools/inspector"
rel="noopener noreferrer" target="_blank"
> rel="noopener noreferrer"
<Button variant="ghost" title="Inspector Documentation">
<CircleHelp className="w-4 h-4 text-gray-800" />
</Button>
</a>
<a
href="https://modelcontextprotocol.io/docs/tools/debugging"
target="_blank"
rel="noopener noreferrer"
>
<Button variant="ghost" title="Debugging Guide">
<Bug className="w-4 h-4 text-gray-800" />
</Button>
</a>
<a
href="https://github.com/modelcontextprotocol/inspector"
target="_blank"
rel="noopener noreferrer"
>
<Button
variant="ghost"
title="Report bugs or contribute on GitHub"
> >
<Github className="w-4 h-4 text-gray-800" /> <CircleHelp className="w-4 h-4 text-foreground" />
</Button> </a>
</a> </Button>
<Button variant="ghost" title="Debugging Guide" asChild>
<a
href="https://modelcontextprotocol.io/docs/tools/debugging"
target="_blank"
rel="noopener noreferrer"
>
<Bug className="w-4 h-4 text-foreground" />
</a>
</Button>
<Button
variant="ghost"
title="Report bugs or contribute on GitHub"
asChild
>
<a
href="https://github.com/modelcontextprotocol/inspector"
target="_blank"
rel="noopener noreferrer"
>
<Github className="w-4 h-4 text-foreground" />
</a>
</Button>
</div> </div>
</div> </div>
</div> </div>