Skip to content

Commit

Permalink
修复左侧菜单合拢时mouseover提示空白视觉bug
Browse files Browse the repository at this point in the history
当一级菜单没子菜单时,mouseover会弹出tooltips,但提示空白无内容
  • Loading branch information
nelsonkuang authored Feb 7, 2018
1 parent 2de1e81 commit 2f34de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Menus = ({ siderFold, darkTheme, navOpenKeys, changeOpenKeys, menu, locati
<Menu.Item key={item.id}>
<Link to={item.route || '#'}>
{item.icon && <Icon type={item.icon} />}
{(!siderFoldN || !menuTree.includes(item)) && item.name}
{item.name}
</Link>
</Menu.Item>
)
Expand Down

0 comments on commit 2f34de5

Please sign in to comment.