chore: Update changeset to PR comment
Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user