Commit 5237439e authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

feat: tool desc

parent 049b3136
......@@ -659,6 +659,7 @@
tools={$tools.reduce((a, e, i, arr) => {
a[e.id] = {
name: e.name,
description: e.meta.description,
enabled: false
};
......
......@@ -52,7 +52,10 @@
>
<div class="flex-1 flex items-center gap-2">
<WrenchSolid />
<div class="flex items-center">{tools[toolId].name}</div>
<Tooltip content={tools[toolId]?.description ?? ''}>
<div class="flex items-center line-clamp-1">{tools[toolId].name}</div>
</Tooltip>
</div>
<Switch
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment