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

Commit 9cfba64

Browse files
Formatting code
1 parent e68dc06 commit 9cfba64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/GitHub.InlineReviews/ViewModels/PullRequestReviewCommentViewModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ public PullRequestReviewCommentViewModel(
5454
this.session = session;
5555
IsPending = isPending;
5656

57-
var pendingReviewAndIdObservable = Observable.CombineLatest(session.WhenAnyValue(x => x.HasPendingReview, x => !x),
57+
var pendingReviewAndIdObservable = Observable.CombineLatest(
58+
session.WhenAnyValue(x => x.HasPendingReview, x => !x),
5859
this.WhenAnyValue(model => model.Id, i => i == 0),
5960
(hasPendingReview, isNewComment) => new { hasPendingReview, isNewComment });
6061

0 commit comments

Comments
 (0)