We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5adaff4 + f28c64f commit 0c0e15dCopy full SHA for 0c0e15d
1 file changed
client/src/components/ToolsTab.tsx
@@ -173,7 +173,7 @@ const ToolsTab = ({
173
<IconDisplay icons={(tool as WithIcons).icons} size="sm" />
174
</div>
175
<div className="flex flex-col flex-1 min-w-0">
176
- <span className="truncate">{tool.name}</span>
+ <span className="truncate">{tool.title || tool.name}</span>
177
<span className="text-sm text-gray-500 text-left line-clamp-2">
178
{tool.description}
179
</span>
@@ -196,7 +196,9 @@ const ToolsTab = ({
196
/>
197
)}
198
<h3 className="font-semibold">
199
- {selectedTool ? selectedTool.name : "Select a tool"}
+ {selectedTool
200
+ ? selectedTool.title || selectedTool.name
201
+ : "Select a tool"}
202
</h3>
203
204
0 commit comments