Restructure link buttons in sidebar to respect theme

This commit is contained in:
Shinya Fujino
2025-03-20 22:18:44 +09:00
parent cedf02d152
commit ce81fb976b

View File

@@ -331,36 +331,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" /> <CircleHelp className="w-4 h-4 text-gray-800" />
</Button> </a>
</a> </Button>
<a <Button variant="ghost" title="Debugging Guide" asChild>
href="https://modelcontextprotocol.io/docs/tools/debugging" <a
target="_blank" href="https://modelcontextprotocol.io/docs/tools/debugging"
rel="noopener noreferrer" target="_blank"
> rel="noopener noreferrer"
<Button variant="ghost" title="Debugging Guide"> >
<Bug className="w-4 h-4 text-gray-800" /> <Bug className="w-4 h-4 text-gray-800" />
</Button> </a>
</a> </Button>
<a <Button
href="https://github.com/modelcontextprotocol/inspector" variant="ghost"
target="_blank" title="Report bugs or contribute on GitHub"
rel="noopener noreferrer" asChild
> >
<Button <a
variant="ghost" href="https://github.com/modelcontextprotocol/inspector"
title="Report bugs or contribute on GitHub" target="_blank"
rel="noopener noreferrer"
> >
<Github className="w-4 h-4 text-gray-800" /> <Github className="w-4 h-4 text-gray-800" />
</Button> </a>
</a> </Button>
</div> </div>
</div> </div>
</div> </div>