Merge branch 'develop' of https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui into feature/accessibility_traits_codable

This commit is contained in:
Scott Pfeil 2023-06-16 14:05:44 -04:00
commit 9c5734584f

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 {