fix: remove sidebar item headings

Signed-off-by: Camila Belo <camilaibs@gmail.com>
This commit is contained in:
Camila Belo
2023-06-09 13:50:43 +02:00
parent 11f48e68fa
commit 7374b3fd68
3 changed files with 27 additions and 7 deletions
@@ -411,7 +411,11 @@ const SidebarItemBase = forwardRef<any, SidebarItemProps>((props, ref) => {
{itemIcon}
</Box>
{text && (
<Typography variant="subtitle2" className={classes.label}>
<Typography
variant="subtitle2"
component="span"
className={classes.label}
>
{text}
</Typography>
)}
@@ -127,7 +127,7 @@ export const SidebarSubmenu = (props: SidebarSubmenuProps) => {
[classes.drawerOpen]: isSubmenuOpen,
})}
>
<Typography variant="h5" className={classes.title}>
<Typography variant="h5" component="span" className={classes.title}>
{props.title}
</Typography>
{props.children}
@@ -172,11 +172,19 @@ export const SidebarSubmenuItem = (props: SidebarSubmenuItemProps) => {
)}
>
{Icon && <Icon fontSize="small" />}
<Typography variant="subtitle1" className={classes.label}>
<Typography
variant="subtitle1"
component="span"
className={classes.label}
>
{title}
<br />
{subtitle && (
<Typography variant="caption" className={classes.subtitle}>
<Typography
variant="caption"
component="span"
className={classes.subtitle}
>
{subtitle}
</Typography>
)}
@@ -204,7 +212,7 @@ export const SidebarSubmenuItem = (props: SidebarSubmenuItemProps) => {
onClick={closeSubmenu}
onTouchStart={e => e.stopPropagation()}
>
<Typography className={classes.textContent}>
<Typography component="span" className={classes.textContent}>
{object.title}
</Typography>
</Link>
@@ -230,11 +238,19 @@ export const SidebarSubmenuItem = (props: SidebarSubmenuItemProps) => {
onTouchStart={e => e.stopPropagation()}
>
{Icon && <Icon fontSize="small" />}
<Typography variant="subtitle1" className={classes.label}>
<Typography
variant="subtitle1"
component="span"
className={classes.label}
>
{title}
<br />
{subtitle && (
<Typography variant="caption" className={classes.subtitle}>
<Typography
variant="caption"
component="span"
className={classes.subtitle}
>
{subtitle}
</Typography>
)}