From ed3df92aca4fd279a55733f450e1cbb348cf672e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Wed, 30 Jul 2025 12:44:58 +0000 Subject: [PATCH] Merged in fix/SW-1048-table-ampersand (pull request #2579) fix(SW-1048): handle & in table * fix(SW-1048): handle & in table Approved-by: Hrishikesh Vaipurkar --- apps/scandic-web/components/Blocks/Table/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/scandic-web/components/Blocks/Table/index.tsx b/apps/scandic-web/components/Blocks/Table/index.tsx index ae918400d..378422fe7 100644 --- a/apps/scandic-web/components/Blocks/Table/index.tsx +++ b/apps/scandic-web/components/Blocks/Table/index.tsx @@ -28,6 +28,9 @@ export default function TableBlock({ data }: TableBlockProps) { accessorKey: col.id, header: col.header, size: col.width, + cell: (info: any) => ( +
+ ), })) const hasHeader = columns.some((col) => col.header)