Skip to content

Commit

Permalink
Merge pull request #75 from vivid-planet/fix-collapsible-item
Browse files Browse the repository at this point in the history
Fix collapsible item
  • Loading branch information
kaufmo committed Jul 18, 2019
2 parents 5a4d117 + 09ab90c commit 917f500
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions packages/react-admin-mui/src/menu/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,7 @@ export interface IMenuItemProps extends IMenuLevel {

type MuiListItemProps = Pick<ListItemProps, Exclude<keyof ListItemProps, "innerRef" | "button">> & { component?: React.ElementType };

export const MenuItem: React.FunctionComponent<IMenuItemProps & MuiListItemProps> = ({
text,
icon,
level,
secondaryAction,
onClick,
...otherProps
}) => {
export const MenuItem: React.FunctionComponent<IMenuItemProps & MuiListItemProps> = ({ text, icon, level, secondaryAction, ...otherProps }) => {
const context = React.useContext(MenuContext);
if (!context) throw new Error("Could not find context for menu");
const hasIcon = !!icon;
Expand Down

0 comments on commit 917f500

Please sign in to comment.