This commit is contained in:
Pfeil, Scott Robert 2020-04-01 16:11:17 -04:00
parent 7f25dd7356
commit cd3889cf55
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ import UIKit
if radioButtonModel.state {
radioButtonSelectionHelper.selectedRadioButton = radioButton
}
FormValidator.setupValidation(molecule: radioButtonSelectionHelper, delegate: delegateObject?.formHolderDelegate)
FormValidator.setupValidation(for: radioButtonSelectionHelper, delegate: delegateObject?.formHolderDelegate)
}
public func selected(_ radioButton: RadioButton) {

View File

@ -342,7 +342,7 @@ public typealias ActionBlockConfirmation = () -> (Bool)
guard let model = model as? ToggleModel else { return }
FormValidator.setupValidation(molecule: model, delegate: delegateObject?.formHolderDelegate)
FormValidator.setupValidation(for: model, delegate: delegateObject?.formHolderDelegate)
if let color = model.onTintColor?.uiColor {
containerTintColor?.on = color