fix initial updates

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-07-16 15:27:54 -05:00
parent 36669b61cb
commit 239af70710
2 changed files with 4 additions and 5 deletions

View File

@ -345,9 +345,8 @@ import UIKit
numberOfDigits = model.digits
if let entryType = model.type {
setAsSecureTextEntry(entryType == .secure || entryType == .password)
}
let entryType = model.type
setAsSecureTextEntry(entryType == .secure || entryType == .password)
let observingDelegate = delegateObject?.observingTextFieldDelegate ?? self

View File

@ -144,8 +144,8 @@ import MVMCore
picker.displayedPropertyKeys = ["phoneNumbers"]
picker.predicateForEnablingContact = NSPredicate(format: "phoneNumbers.@count > 0")
picker.predicateForSelectionOfProperty = NSPredicate(format: "key == 'phoneNumbers'")
Task(priority: .userInitiated) {
await NavigationHandler.shared().present(viewController: picker, animated: true)
if let viewContoller = UIApplication.topViewController() {
viewContoller.present(picker, animated: true)
}
}