Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Fix rebase error
Browse files Browse the repository at this point in the history
  • Loading branch information
hartez committed Oct 16, 2019
1 parent 0700f06 commit 001e390
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ protected override UICollectionViewDelegateFlowLayout CreateDelegator()
protected override IItemsViewSource CreateItemsViewSource()
{
// Use the BindableProperty here (instead of _isGroupingEnabled) because the cached value might not be set yet
if (GroupableItemsView.IsGrouped)
if (ItemsView.IsGrouped)
{
return ItemsSourceFactory.CreateGrouped(GroupableItemsView.ItemsSource, this);
return ItemsSourceFactory.CreateGrouped(ItemsView.ItemsSource, this);
}

return base.CreateItemsViewSource();
Expand Down

0 comments on commit 001e390

Please sign in to comment.