From 6b74b227cb8e76139e22abe3e275ce3062e0b4cb Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 12 Nov 2025 20:50:01 +0200 Subject: [PATCH] feat(board/promoted_attributes): format URL --- .../src/widgets/attribute_widgets/PromotedAttributesDisplay.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/client/src/widgets/attribute_widgets/PromotedAttributesDisplay.tsx b/apps/client/src/widgets/attribute_widgets/PromotedAttributesDisplay.tsx index 7552c3520..e2451a4cd 100644 --- a/apps/client/src/widgets/attribute_widgets/PromotedAttributesDisplay.tsx +++ b/apps/client/src/widgets/attribute_widgets/PromotedAttributesDisplay.tsx @@ -72,6 +72,8 @@ function formatLabelValue(attr: AttributeWithDefinitions): ComponentChildren { } case "boolean": return <> {attr.friendlyName}; + case "url": + return <>{attr.friendlyName}; case "text": default: return <>{attr.friendlyName}: {value};