mirror of
https://github.com/usememos/memos.git
synced 2024-12-25 22:51:29 +08: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
1 changed files with 3 additions and 1 deletions
|
@ -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…
Reference in a new issue