Skip to content

Commit

Permalink
feat(MenuItemGroup): change type of prop shortTitle to React.ReactNode
Browse files Browse the repository at this point in the history
Co-authored-by: Johannes Obermair <48853629+johnnyomair@users.noreply.github.com>
  • Loading branch information
jomunker and johnnyomair authored Feb 6, 2024
1 parent fd9eb4d commit 563d5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/admin/admin/src/mui/menu/ItemGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const styles = (theme: Theme) =>

export interface MenuItemGroupProps {
title: React.ReactNode;
shortTitle?: string;
shortTitle?: React.ReactNode;
}

const ItemGroup: React.FC<React.PropsWithChildren<WithStyles<typeof styles> & MenuItemGroupProps>> = ({ title, shortTitle, children, classes }) => {
Expand Down

0 comments on commit 563d5d5

Please sign in to comment.