chore: Update changeset to PR comment

Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
Carlos Esteban Lopez
2023-01-10 16:05:52 -05:00
parent 4cb21767dc
commit e1f534332a
2 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -21,4 +21,4 @@
'@backstage/plugin-user-settings': patch
---
Enable the eslint-plugin-react for non-test files and forbid `<span>` tag in favor of `<Typography component='span'>`.
Small updates to some components to ensure theme typography properties are inherited correctly.
@@ -59,7 +59,10 @@ export const RadarLegendLink = ({
tabIndex={0}
onKeyPress={toggle}
>
<Typography component="span" className={active ? classes.activeEntry : classes.entry}>
<Typography
component="span"
className={active ? classes.activeEntry : classes.entry}
>
{title}
</Typography>
</Typography>
@@ -77,7 +80,10 @@ export const RadarLegendLink = ({
}
return (
<WithLink url={url} className={classes.entryLink}>
<Typography component="span" className={active ? classes.activeEntry : classes.entry}>
<Typography
component="span"
className={active ? classes.activeEntry : classes.entry}
>
{title}
</Typography>
</WithLink>