Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 3bdc45e

Browse files
Merge pull request #1837 from github/fixes/1683-pr-authoring-wrong-fork
Navigate to the correct fork in PR authoring.
2 parents ab7ec8b + be71fff commit 3bdc45e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.App/ViewModels/GitHubPane/PullRequestReviewAuthoringViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public PullRequestReviewAuthoringViewModel(
6868
_ => DoSubmit(Octokit.PullRequestReviewEvent.RequestChanges));
6969
Cancel = ReactiveCommand.CreateAsyncTask(DoCancel);
7070
NavigateToPullRequest = ReactiveCommand.Create().OnExecuteCompleted(_ =>
71-
NavigateTo(Invariant($"{LocalRepository.Owner}/{LocalRepository.Name}/pull/{PullRequestModel.Number}")));
71+
NavigateTo(Invariant($"{RemoteRepositoryOwner}/{LocalRepository.Name}/pull/{PullRequestModel.Number}")));
7272
}
7373

7474
/// <inheritdoc/>

0 commit comments

Comments
 (0)