mirror of
https://github.com/usememos/memos.git
synced 2025-02-22 14:17:48 +01:00
chore: fix truncation of webhook url to avoid disappearance of Trash Icon (#4145)
* Fixed truncation of webhook url to avoid disappearance of Trash Icon * fixing webhook truncation issue #4078 * Removing overflow-hidden * resolving pipeline issues * supporting on hover url display --------- Co-authored-by: Madhur <madhur.jodhwani@accelya.com>
This commit is contained in:
parent
54ee2bf3ab
commit
a51e363c7c
@ -79,7 +79,9 @@ const WebhookSection = () => {
|
||||
{webhooks.map((webhook) => (
|
||||
<tr key={webhook.id}>
|
||||
<td className="whitespace-nowrap px-3 py-2 text-sm text-gray-900 dark:text-gray-400">{webhook.name}</td>
|
||||
<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}>
|
||||
{webhook.url}
|
||||
</td>
|
||||
<td className="relative whitespace-nowrap px-3 py-2 text-right text-sm">
|
||||
<Button
|
||||
variant="plain"
|
||||
|
Loading…
x
Reference in New Issue
Block a user