[iOS] remove extra space in bookmark section in PP

This commit is contained in:
Aleksey Belousov 2020-06-11 17:11:49 +03:00 committed by Vladimir Byko-Ianko
parent 95e3e1539b
commit 151a9b28d6

View file

@ -31,6 +31,11 @@ final class ExpandableLabel: UIView {
containerText = text
textView.text = text
expandLabel.isHidden = true
if let text = text {
textView.isHidden = text.count == 0
} else {
textView.isHidden = true
}
}
}
@ -39,6 +44,11 @@ final class ExpandableLabel: UIView {
containerText = attributedText?.string
textView.attributedText = attributedText
expandLabel.isHidden = true
if let attributedText = attributedText {
textView.isHidden = attributedText.length == 0
} else {
textView.isHidden = true
}
}
}