From df5678f6961b86b04d9c1ad732b2045f7990844c Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Thu, 7 Jan 2021 09:14:07 -0500 Subject: [PATCH] adjusted --- .../Atomic/Atoms/FormFields/TextFields/EntryField.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Atoms/FormFields/TextFields/EntryField.swift b/MVMCoreUI/Atomic/Atoms/FormFields/TextFields/EntryField.swift index 23b9710f..3c579317 100644 --- a/MVMCoreUI/Atomic/Atoms/FormFields/TextFields/EntryField.swift +++ b/MVMCoreUI/Atomic/Atoms/FormFields/TextFields/EntryField.swift @@ -319,7 +319,10 @@ import UIKit model.updateUIDynamicError = { [weak self] in MVMCoreDispatchUtility.performBlock(onMainThread: { - guard let self = self, model.dynamicErrorMessage != nil else { return } + guard let self = self, + model.dynamicErrorMessage != nil + else { return } + model.isValid = false self.updateValidation(model.isValid ?? false) })