taking out showError for now
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
parent
8c1577bb7f
commit
b41d2189bf
@ -143,7 +143,8 @@ import VDS
|
|||||||
MVMCoreDispatchUtility.performBlock(onMainThread: { [weak self] in
|
MVMCoreDispatchUtility.performBlock(onMainThread: { [weak self] in
|
||||||
guard let self = self else { return }
|
guard let self = self else { return }
|
||||||
let isValid = viewModel.isValid ?? true
|
let isValid = viewModel.isValid ?? true
|
||||||
showError = !isValid
|
//TODO: Fix issue with default state
|
||||||
|
//showError = !isValid
|
||||||
isEnabled = viewModel.enabled
|
isEnabled = viewModel.enabled
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|||||||
@ -75,7 +75,8 @@ import VDS
|
|||||||
MVMCoreDispatchUtility.performBlock(onMainThread: { [weak self] in
|
MVMCoreDispatchUtility.performBlock(onMainThread: { [weak self] in
|
||||||
guard let self = self else { return }
|
guard let self = self else { return }
|
||||||
let isValid = viewModel.checkbox.isValid ?? true
|
let isValid = viewModel.checkbox.isValid ?? true
|
||||||
showError = !isValid
|
//TODO: Fix issue with default state
|
||||||
|
//showError = !isValid
|
||||||
errorText = viewModel.checkbox.errorMessage
|
errorText = viewModel.checkbox.errorMessage
|
||||||
isEnabled = viewModel.checkbox.enabled
|
isEnabled = viewModel.checkbox.enabled
|
||||||
})
|
})
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user