From 57d7582e816c43d65c036adf44e8ac2117c46275 Mon Sep 17 00:00:00 2001 From: Sunil Jose Date: Mon, 27 May 2024 22:33:02 +0530 Subject: [PATCH 1/2] Updating SupportButton title ui characteristics Signed-off-by: Sunil Jose --- .changeset/twenty-masks-dance.md | 5 +++++ .../src/components/SupportButton/SupportButton.tsx | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .changeset/twenty-masks-dance.md diff --git a/.changeset/twenty-masks-dance.md b/.changeset/twenty-masks-dance.md new file mode 100644 index 0000000000..4dbc9a7662 --- /dev/null +++ b/.changeset/twenty-masks-dance.md @@ -0,0 +1,5 @@ +--- +'@backstage/core-components': patch +--- + +Fixed bug in SupportButton where the title was rendered with the characteristics of a button. diff --git a/packages/core-components/src/components/SupportButton/SupportButton.tsx b/packages/core-components/src/components/SupportButton/SupportButton.tsx index 623eda3098..8626353dd1 100644 --- a/packages/core-components/src/components/SupportButton/SupportButton.tsx +++ b/packages/core-components/src/components/SupportButton/SupportButton.tsx @@ -151,7 +151,11 @@ export function SupportButton(props: SupportButtonProps) { autoFocusItem={Boolean(anchorEl)} > {title && ( - + {title} )} From 937627b0478a40e84a174838460b088d74728616 Mon Sep 17 00:00:00 2001 From: Vincenzo Scamporlino Date: Mon, 3 Jun 2024 16:34:49 +0200 Subject: [PATCH 2/2] Update .changeset/twenty-masks-dance.md Signed-off-by: Vincenzo Scamporlino --- .changeset/twenty-masks-dance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/twenty-masks-dance.md b/.changeset/twenty-masks-dance.md index 4dbc9a7662..f08e6301c9 100644 --- a/.changeset/twenty-masks-dance.md +++ b/.changeset/twenty-masks-dance.md @@ -2,4 +2,4 @@ '@backstage/core-components': patch --- -Fixed bug in SupportButton where the title was rendered with the characteristics of a button. +Fixed a bug in `SupportButton` where the title was rendered with the characteristics of a button.