chore: set "See All" button hidden for hashtag recommend

This commit is contained in:
CMK 2021-07-20 18:07:25 +08:00
parent d2f9828f50
commit 9c25bebaba
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ extension SearchViewController {
let header = SearchRecommendCollectionHeader()
header.titleLabel.text = L10n.Scene.Search.Recommend.HashTag.title
header.descriptionLabel.text = L10n.Scene.Search.Recommend.HashTag.description
header.seeAllButton.addTarget(self, action: #selector(SearchViewController.hashtagSeeAllButtonPressed(_:)), for: .touchUpInside)
header.seeAllButton.isHidden = true
stackView.addArrangedSubview(header)
hashtagCollectionView.register(SearchRecommendTagsCollectionViewCell.self, forCellWithReuseIdentifier: String(describing: SearchRecommendTagsCollectionViewCell.self))