bugfix: CXTDT-459435 - Removing titleLabel from accessible elements, as the title's text is set as the textfields accessibilityLabel.

This commit is contained in:
Sumanth Nadigadda 2024-02-02 17:26:23 +05:30
parent c0d4db39ca
commit 4634cff455

View File

@ -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) {