Correct link to changeset

This commit is contained in:
René Pfeuffer
2018-09-19 16:05:35 +02:00
parent 67e140cd24
commit 231dcbb9cb
3 changed files with 19 additions and 7 deletions

View File

@@ -77,7 +77,7 @@ class Changesets extends React.Component<State, Props> {
renderTable = () => {
const branch = this.props.match.params.branch;
const { changesets, branchNames } = this.props;
const { repository, changesets, branchNames } = this.props;
if (branchNames && branchNames.length > 0) {
return (
@@ -88,7 +88,7 @@ class Changesets extends React.Component<State, Props> {
preselectedOption={branch}
optionSelected={branch => this.branchChanged(branch)}
/>
<ChangesetTable changesets={changesets} />
<ChangesetTable repository={repository} changesets={changesets} />
</div>
);
}