Merge remote-tracking branch 'origin/develop' into feature/swiftify_notifications

This commit is contained in:
Rajesh Pullagalla 2023-06-22 12:05:32 -04:00
commit 3ba44ae72b

View File

@ -215,9 +215,13 @@ import MVMCore
proprietorTextDelegate?.textFieldDidEndEditing?(textField) proprietorTextDelegate?.textFieldDidEndEditing?(textField)
if validateMDNTextField() && isNationalMDN { if validateMDNTextField() {
if isNationalMDN {
textField.text = MVMCoreUIUtility.formatMdn(textField.text) textField.text = MVMCoreUIUtility.formatMdn(textField.text)
} }
// Validate the base input field along with triggering form field validation rules.
validateText()
}
} }
@objc public func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool { @objc public func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool {