Fix 'My Stories' empty state
This commit is contained in:
parent
b0f6b1fe33
commit
5bdc475ade
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user