Merge branch 'bugfix/CXTDT-459435' into 'release/11_2_0'
bugfix - Removing titleLabel from accessible elements ### Summary Removing titleLabel from accessible elements in TextEntryField molecule, as the title's text is set as the textfields accessibilityLabel, thus reading the same title twice. ### JIRA Ticket CXTDT-459435 Co-authored-by: Sumanth Nadigadda <sumanth.nadigadda@verizon.com> See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/1052
This commit is contained in:
commit
6e96976a55
@ -187,7 +187,7 @@ import UIKit
|
||||
let tap = UITapGestureRecognizer(target: self, action: #selector(startEditing))
|
||||
entryFieldContainer.addGestureRecognizer(tap)
|
||||
|
||||
accessibilityElements = [titleLabel, textField, feedbackLabel]
|
||||
accessibilityElements = [textField, feedbackLabel]
|
||||
}
|
||||
|
||||
@objc open override func updateView(_ size: CGFloat) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user