fix: webhook overflow (#11968)
Co-authored-by: Peer Richelsen <peer@cal.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>pull/11983/head^2
parent
20b7633ab5
commit
e32d4648af
|
@ -73,7 +73,11 @@ export default function WebhookListItem(props: {
|
||||||
)}>
|
)}>
|
||||||
<div className="w-full truncate">
|
<div className="w-full truncate">
|
||||||
<div className="flex">
|
<div className="flex">
|
||||||
<p className="text-emphasis truncate text-sm font-medium">{webhook.subscriberUrl}</p>
|
<Tooltip content={webhook.subscriberUrl}>
|
||||||
|
<p className="text-emphasis max-w-[600px] truncate text-sm font-medium">
|
||||||
|
{webhook.subscriberUrl}
|
||||||
|
</p>
|
||||||
|
</Tooltip>
|
||||||
{!!props.readOnly && (
|
{!!props.readOnly && (
|
||||||
<Badge variant="gray" className="ml-2 ">
|
<Badge variant="gray" className="ml-2 ">
|
||||||
{t("readonly")}
|
{t("readonly")}
|
||||||
|
|
Loading…
Reference in New Issue