Merge pull request #17657 from ant-design/fix-set-state-warning

fix: Cannot update during an existing state transition
This commit is contained in:
偏右 2019-07-16 11:51:29 +08:00 committed by GitHub
commit aa0a0de0ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 5 deletions

View File

@ -569,7 +569,6 @@ describe('Menu', () => {
.instance()
.getMenuOpenAnimation(''),
).toBe('');
expect(wrapper.find('InternalMenu').state().switchingModeFromInline).toBe(false);
});
it('MenuItem should not render Tooltip when inlineCollapsed is false', () => {

View File

@ -276,10 +276,6 @@ class InternalMenu extends React.Component<InternalMenuProps, MenuState> {
// submenu should hide without animation
if (this.state.switchingModeFromInline) {
menuOpenAnimation = '';
this.setState({
switchingModeFromInline: false,
});
// this.switchingModeFromInline = false;
} else {
menuOpenAnimation = 'zoom-big';
}