From dcd2e754b4c382759aacefcb7178a1b0dcde883e Mon Sep 17 00:00:00 2001 From: Mohamed Fall Date: Sat, 3 Jan 2026 12:57:09 +0000 Subject: [PATCH] fix(Label): render add variant labels as buttons Signed-off-by: Mohamed Fall --- packages/react-core/src/components/Label/Label.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-core/src/components/Label/Label.tsx b/packages/react-core/src/components/Label/Label.tsx index dbfc5737932..8fd0f643188 100644 --- a/packages/react-core/src/components/Label/Label.tsx +++ b/packages/react-core/src/components/Label/Label.tsx @@ -338,7 +338,7 @@ export const Label: React.FunctionComponent = ({ ); } - const LabelComponent = (isOverflowLabel ? 'button' : 'span') as any; + const LabelComponent = (isOverflowLabel || isAddLabel ? 'button' : 'span') as any; return (