From a4b716f8c7ef2a54c8cc025d856131f24da678fb Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 10 Apr 2026 11:38:42 +0300 Subject: [PATCH] fix(board): clicking on a URL would open th quick edit panel --- .../client/src/widgets/attribute_widgets/UserAttributesList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx b/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx index f01e70b491..4ebcab4813 100644 --- a/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx +++ b/apps/client/src/widgets/attribute_widgets/UserAttributesList.tsx @@ -87,7 +87,7 @@ function buildUserAttribute(attr: AttributeWithDefinitions): ComponentChildren { content = <>{" "}{attr.friendlyName}; break; case "url": - content = {attr.friendlyName}; + content = e.stopPropagation()}>{attr.friendlyName}; break; case "color": style = { backgroundColor: value, color: getReadableTextColor(value) };