Fix 'My Stories' empty state

This commit is contained in:
Nora Trapp 2022-08-20 15:00:44 -07:00
parent b0f6b1fe33
commit 5bdc475ade

View File

@ -10,7 +10,9 @@ import PhotosUI
class MyStoriesViewController: OWSViewController {
private let tableView = UITableView(frame: .zero, style: .grouped)
private var items = OrderedDictionary<TSThread, [OutgoingStoryItem]>()
private var items = OrderedDictionary<TSThread, [OutgoingStoryItem]>() {
didSet { emptyStateLabel.isHidden = items.orderedKeys.count > 0 }
}
private lazy var emptyStateLabel: UILabel = {
let label = UILabel()
label.textColor = Theme.secondaryTextAndIconColor