diff --git a/iphone/Maps/UI/Search/SearchOnMap/PlaceholderView.swift b/iphone/Maps/UI/Search/SearchOnMap/PlaceholderView.swift index 802a298e4..d8a44a304 100644 --- a/iphone/Maps/UI/Search/SearchOnMap/PlaceholderView.swift +++ b/iphone/Maps/UI/Search/SearchOnMap/PlaceholderView.swift @@ -71,15 +71,16 @@ final class PlaceholderView: UIView { titleLabel.text = title titleLabel.setFontStyle(.medium16, color: .blackPrimary) titleLabel.textAlignment = .center + titleLabel.numberOfLines = 0 subtitleLabel.text = subtitle subtitleLabel.setFontStyle(.regular14, color: .blackSecondary) subtitleLabel.textAlignment = .center subtitleLabel.isHidden = subtitle == nil - subtitleLabel.numberOfLines = 2 + subtitleLabel.numberOfLines = 0 stackView.axis = .vertical - stackView.alignment = .center + stackView.alignment = .fill stackView.spacing = 8 }