fix(core-components): address layout feedback and add changeset

Signed-off-by: Deepesh123455 <deepeshthakur802@gmail.com>
This commit is contained in:
Deepesh123455
2026-03-17 14:08:58 +05:30
parent d48ed2e989
commit 320eed3a6c
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Resolved DOM nesting warning in OAuthRequestDialog by rendering secondary text as block-level spans.
@@ -95,13 +95,14 @@ const LoginRequestListItem = ({ request, busy, setBusy }: RowProps) => {
<Typography
variant="subtitle2"
component="span"
display="block"
color="textSecondary"
>
{message}
</Typography>
)}
{error && (
<Typography component="span" color="error">
<Typography component="span" display="block" color="error">
{error}
</Typography>
)}