Merge pull request #376 from RyanRory/accessibility-id-for-threads-in-share-screen

Add accessibility id and label to cells in share to Session screen
pull/1061/head
Morgan Pretty 3 weeks ago committed by GitHub
commit 8b109d43c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -96,5 +96,9 @@ final class SimplifiedConversationCell: UITableViewCell {
using: dependencies
)
displayNameLabel.text = cellViewModel.displayName
self.isAccessibilityElement = true
self.accessibilityIdentifier = "Contact"
self.accessibilityLabel = cellViewModel.displayName
}
}

Loading…
Cancel
Save