Skip to content

Commit

Permalink
Code Quality: Fix XAML Binding errors in Sidebar (#13254)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelwgn authored Aug 27, 2023
1 parent 222b92a commit 719f9be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Files.App/UserControls/SideBar/SideBarControls.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
HorizontalAlignment="Stretch"
local:SidebarItem.TemplateRoot="{Binding ElementName=RootPanel}"
AutomationProperties.AccessibilityView="Content"
ItemsSource="{Binding ChildItems, Mode=OneWay}"
ItemsSource="{Binding Children, Mode=OneWay}"
XYFocusKeyboardNavigation="Enabled">
<ItemsRepeater.ItemTemplate>
<DataTemplate>
Expand All @@ -203,7 +203,7 @@
local:SidebarItem.TemplateRoot="{Binding ElementName=RootPanel}"
AutomationProperties.AccessibilityView="Content"
ItemTemplate="{StaticResource DefaultSidebarItemTemplate}"
ItemsSource="{Binding ChildItems, Mode=OneWay}"
ItemsSource="{Binding Children, Mode=OneWay}"
Visibility="Collapsed"
XYFocusKeyboardNavigation="Enabled">
<ItemsRepeater.Layout>
Expand Down

0 comments on commit 719f9be

Please sign in to comment.