forked from organicmaps/organicmaps
[cherry] [release-74-fix] [ios] Fixed min Viator suggestions count.
This commit is contained in:
parent
953b416c85
commit
e2067c3048
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ extension PPViatorCarouselCell: UICollectionViewDelegate, UICollectionViewDataSo
|
|||
}
|
||||
|
||||
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
|
||||
return min(dataSource.count + 1, kMaximumNumberOfElements)
|
||||
return min(dataSource.count, kMaximumNumberOfElements) + 1
|
||||
}
|
||||
|
||||
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
|
||||
|
|
Loading…
Add table
Reference in a new issue