From b032e94ca1ac2d889a7c451f416781fcf53d4f95 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Fri, 13 Feb 2026 17:14:55 +0530 Subject: [PATCH] feat: integrate Markdown component for rendering webhook description --- frontend/src/app/boards/[boardId]/edit/page.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/boards/[boardId]/edit/page.tsx b/frontend/src/app/boards/[boardId]/edit/page.tsx index 74f9daf5..7d232a77 100644 --- a/frontend/src/app/boards/[boardId]/edit/page.tsx +++ b/frontend/src/app/boards/[boardId]/edit/page.tsx @@ -53,6 +53,7 @@ import { import SearchableSelect from "@/components/ui/searchable-select"; import { Textarea } from "@/components/ui/textarea"; import { localDateInputToUtcIso, toLocalDateInput } from "@/lib/datetime"; +import { Markdown } from "@/components/atoms/Markdown"; const slugify = (value: string) => value @@ -188,7 +189,12 @@ function WebhookCard({ disabled={isBusy} /> ) : ( -

{webhook.description}

+
+ +
)}