its possible to unselect branch on changesets view to see all changesets for mercurial

This commit is contained in:
Eduard Heimbuch
2020-01-15 09:13:16 +01:00
parent fd23fcee14
commit 38d5de7435

View File

@@ -40,6 +40,8 @@ class ChangesetsRoot extends React.Component<Props> {
if (branch) {
let url = `${baseUrl}/branch/${encodeURIComponent(branch.name)}/changesets/`;
history.push(url);
} else {
history.push(`${baseUrl}/changesets/`)
}
};