Fix Error Log not showing UIAlertController on iOS <=13

This commit is contained in:
nythepegasus
2024-05-06 20:23:14 -04:00
committed by ny
parent 9b7c0387cf
commit 8cfe8a1ac0

View File

@@ -112,8 +112,10 @@ private extension ErrorLogViewController
cell.menuButton.menu = menu
cell.menuButton.showsMenuAsPrimaryAction = self.isScrolling ? false : true
cell.selectionStyle = .none
} else {
cell.menuButton.isUserInteractionEnabled = false
}
// Include errorDescriptionTextView's text in cell summary.
cell.accessibilityLabel = [cell.errorFailureLabel.text, cell.dateLabel.text, cell.errorCodeLabel.text, cell.errorDescriptionTextView.text].compactMap { $0 }.joined(separator: ". ")