We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d805cc2 commit ce3d2acCopy full SHA for ce3d2ac
lib/manager/components/version/FeedVersionReport.js
@@ -35,7 +35,8 @@ export default class FeedVersionReport extends Component {
35
36
componentWillReceiveProps (nextProps) {
37
// Reset tab to summary when version changes
38
- if (this.props.version !== nextProps.version) {
+ const { version } = this.props
39
+ if (version && nextProps.version && version.id !== nextProps.version.id) {
40
this.setState({ tab: 'feed' })
41
}
42
0 commit comments