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

Commit ae6935a

Browse files
committed
Don't collapse Reviewers or Checks sections
The Reviewers section contains an `Add your review` button which I don't think should be hidden by default. The Checks section is the only place where build status is surfaced and contains a link to Details for each build.
1 parent e504484 commit ae6935a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.VisualStudio.UI/Views/GitHubPane/PullRequestDetailView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221

222222
<ghfvs:SectionControl Name="reviewsSection"
223223
HeaderText="{x:Static ghfvs:Resources.Reviewers}"
224-
IsExpanded="False"
224+
IsExpanded="True"
225225
Margin="0 8 0 0"
226226
ghfvs:ScrollingVerticalStackPanel.IsFixed="true">
227227
<ItemsControl ItemsSource="{Binding Reviews}" Margin="0 4 12 4">
@@ -235,7 +235,7 @@
235235

236236
<ghfvs:SectionControl Name="checksSection"
237237
HeaderText="Checks"
238-
IsExpanded="False"
238+
IsExpanded="True"
239239
Margin="0 8 0 0"
240240
ghfvs:ScrollingVerticalStackPanel.IsFixed="true"
241241
Visibility="{Binding Checks.Count, Converter={ghfvs:CountToVisibilityConverter}}">

0 commit comments

Comments
 (0)