We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When simple input components are added to tabs, and a state change on them is called, the tabActive state of Tabs is reset.
Solution: delete newProps.tabActive in componentWillReceiveProps:
componentWillReceiveProps: function(newProps){ delete newProps.tabActive; /* don't change tabs when child props change */ console.log("componentWillReceiveProps newProps.tabActive:"+newProps.tabActive); if(newProps.tabActive){ this.setState({tabActive: newProps.tabActive}); } },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When simple input components are added to tabs, and a state change on them is called, the tabActive state of Tabs is reset.
Solution: delete newProps.tabActive in componentWillReceiveProps:
The text was updated successfully, but these errors were encountered: