We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d691e9 + 01adbe5 commit ece0e27Copy full SHA for ece0e27
1 file changed
client/src/components/ToolsTab.tsx
@@ -121,7 +121,7 @@ const ToolsTab = ({
121
renderItem={(tool) => (
122
<div className="flex flex-col items-start">
123
<span className="flex-1">{tool.name}</span>
124
- <span className="text-sm text-gray-500 text-left">
+ <span className="text-sm text-gray-500 text-left line-clamp-3">
125
{tool.description}
126
</span>
127
</div>
@@ -149,7 +149,7 @@ const ToolsTab = ({
149
</AlertDescription>
150
</Alert>
151
)}
152
- <p className="text-sm text-gray-600 dark:text-gray-400">
+ <p className="text-sm text-gray-600 dark:text-gray-400 whitespace-pre-wrap max-h-48 overflow-y-auto">
153
{selectedTool.description}
154
</p>
155
{Object.entries(selectedTool.inputSchema.properties ?? []).map(
0 commit comments