Fix for entryField

This commit is contained in:
Nandhini Rajendran 2022-03-28 20:56:24 +05:30
parent dfb00a1f96
commit b498c4fb0f
2 changed files with 2 additions and 1 deletions

View File

@ -58,6 +58,6 @@
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(options, forKey: .options)
try container.encodeIfPresent(options, forKey: .selectedIndex)
try container.encodeIfPresent(selectedIndex, forKey: .selectedIndex)
}
}

View File

@ -286,6 +286,7 @@ import UIKit
entryFieldContainer.disableAllBorders = false
feedbackLabel.text = nil
entryFieldContainer.reset()
entryFieldModel?.updateUI = nil
}
open override func set(with model: MoleculeModelProtocol, _ delegateObject: MVMCoreUIDelegateObject?, _ additionalData: [AnyHashable: Any]?) {