From 8bd1647a2d6687e1297bc5784d063a5aa3524de9 Mon Sep 17 00:00:00 2001 From: Catalin Pit <25515812+catalinpit@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:14:10 +0200 Subject: [PATCH] chore: fixed UI --- .../web/src/app/(dashboard)/settings/webhooks/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx b/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx index 1b27ccd0b..dcb90712b 100644 --- a/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx +++ b/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx @@ -53,12 +53,14 @@ export default function WebhookPage() { !webhook.enabled && 'bg-muted/40', )} > -
+
{webhook.id}
-
-
{webhook.webhookUrl}
+
+
+ {webhook.webhookUrl} +
{webhook.enabled ? 'Enabled' : 'Disabled'} @@ -78,7 +80,7 @@ export default function WebhookPage() {

-
+