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

Commit 70920e7

Browse files
authored
Merge pull request #1056 from github/fixes/1053-cant-navigate-with-one-comment
Allow comment navigation with 1 comment.
2 parents f051dca + 5c74a34 commit 70920e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.InlineReviews/Commands/InlineCommentNavigationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public override bool IsEnabled
4949
get
5050
{
5151
var tags = GetTags(GetCurrentTextViews());
52-
return tags.Count > 1;
52+
return tags.Count > 0;
5353
}
5454
}
5555

0 commit comments

Comments
 (0)