We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e86fe2b + 02975df commit a705dc5Copy full SHA for a705dc5
app/web_ui/src/routes/(app)/tools/[project_id]/tool_servers/[tool_server_id]/+page.svelte
@@ -582,7 +582,9 @@
582
)}
583
<tr>
584
<td class="font-medium">{tool.name}</td>
585
- <td class="max-w-[300px]">{tool.description || "None"}</td>
+ <td class="max-w-[300px] whitespace-pre-line break-words"
586
+ >{tool.description || "None"}</td
587
+ >
588
<td>
589
{#if formatted_args.length > 0}
590
<div class="divide-y divide-y-[0.5px]">
@@ -601,7 +603,9 @@
601
603
</div>
602
604
{#if arg.description}
605
<div class="text-gray-500 text-sm mt-1">
- {arg.description}
606
+ <span class="whitespace-pre-line break-words"
607
+ >{arg.description}</span
608
609
610
{/if}
611
0 commit comments