[iOS] fix 'more reviews' button in PP

This commit is contained in:
Aleksey Belousov 2020-03-01 18:09:20 +03:00 committed by Alexander Boriskov
parent d61ad24f80
commit 40abc6628d

View file

@ -82,7 +82,10 @@ extension PlacePageInteractor: AddReviewViewControllerDelegate {
extension PlacePageInteractor: PlacePageReviewsViewControllerDelegate {
func didPressMoreReviews() {
let moreReviews = viewController!.storyboard!.instantiateViewController(ofType: MoreReviewsViewController.self)
moreReviews.ugcData = placePageData.ugcData
moreReviews.title = placePageData.previewData.title
MapViewController.shared()?.navigationController?.pushViewController(moreReviews, animated: true)
}
}