We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54ee2bf commit a51e363Copy full SHA for a51e363
web/src/components/Settings/WebhookSection.tsx
@@ -79,7 +79,9 @@ const WebhookSection = () => {
79
{webhooks.map((webhook) => (
80
<tr key={webhook.id}>
81
<td className="whitespace-nowrap px-3 py-2 text-sm text-gray-900 dark:text-gray-400">{webhook.name}</td>
82
- <td className="whitespace-nowrap px-3 py-2 text-sm text-gray-900 dark:text-gray-400">{webhook.url}</td>
+ <td className="max-w-[200px] px-3 py-2 text-sm text-gray-900 dark:text-gray-400 truncate" title={webhook.url}>
83
+ {webhook.url}
84
+ </td>
85
<td className="relative whitespace-nowrap px-3 py-2 text-right text-sm">
86
<Button
87
variant="plain"
0 commit comments