diff --git a/frontend/src/app/boards/[boardId]/custom-field-utils.tsx b/frontend/src/app/boards/[boardId]/custom-field-utils.tsx
index a9ffb26..2e2d02e 100644
--- a/frontend/src/app/boards/[boardId]/custom-field-utils.tsx
+++ b/frontend/src/app/boards/[boardId]/custom-field-utils.tsx
@@ -142,7 +142,7 @@ export const formatCustomFieldDetailValue = (
href={parsedUrl.toString()}
target="_blank"
rel="noreferrer"
- className="inline-flex items-center gap-1 text-blue-700 underline decoration-blue-300 underline-offset-2 hover:text-blue-800"
+ className="inline-flex items-center gap-1 text-primary underline decoration-primary/40 underline-offset-2 hover:text-primary"
>
{parsedUrl.toString()}
@@ -157,7 +157,7 @@ export const formatCustomFieldDetailValue = (
try {
const normalized = typeof value === "string" ? JSON.parse(value) : value;
return (
-
+
{JSON.stringify(normalized, null, 2)}
);
diff --git a/frontend/src/app/boards/[boardId]/edit/page.tsx b/frontend/src/app/boards/[boardId]/edit/page.tsx
index d7b0fd8..6bc4d5a 100644
--- a/frontend/src/app/boards/[boardId]/edit/page.tsx
+++ b/frontend/src/app/boards/[boardId]/edit/page.tsx
@@ -137,10 +137,10 @@ function WebhookCard({
return (
-
+
Webhook {webhook.id.slice(0, 8)}
@@ -218,7 +218,7 @@ function WebhookCard({
disabled={isBusy}
/>
-
+
) : (
<>
-
+
-
+
Recipient: {mappedAgent?.name ?? "Lead agent"}
>
)}
-
-
+
+
{webhook.endpoint_url ?? webhook.endpoint_path}
@@ -770,7 +770,7 @@ export default function EditBoardPage() {