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

Commit 9d74c79

Browse files
author
Steven Kirk
committed
Fix "Compare Files" context menu.
It was bound to a command that didn't exist.
1 parent 0a1cfee commit 9d74c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
DataContext and update the CommandParameter to the changed file -->
354354
<ContextMenu x:Key="FileContextMenu">
355355
<MenuItem Header="{x:Static prop:Resources.OpenFile}" Command="{Binding OpenFile}"/>
356-
<MenuItem Header="{x:Static prop:Resources.CompareFile}" Command="{Binding CompareFile}"/>
356+
<MenuItem Header="{x:Static prop:Resources.CompareFile}" Command="{Binding DiffFile}"/>
357357
</ContextMenu>
358358
</Grid.Resources>
359359

0 commit comments

Comments
 (0)