mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
fix timing error on branchSelector after redirect to defaultBranch on sourcesView
This commit is contained in:
@@ -85,10 +85,10 @@ class Sources extends React.Component<Props, State> {
|
||||
const defaultBranches = branches.filter(b => b.defaultBranch);
|
||||
|
||||
if (defaultBranches.length > 0) {
|
||||
this.setState({ selectedBranch: defaultBranches[0] });
|
||||
this.props.history.push(
|
||||
`${baseUrl}/${encodeURIComponent(defaultBranches[0].name)}/`
|
||||
);
|
||||
this.setState({ selectedBranch: defaultBranches[0] });
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user