Merge branch 'bugfix/entryFieldFix' into 'develop'

Fix for entryField

See merge request BPHV_MIPS/mvm_core_ui!826
This commit is contained in:
Bruce, Matt R 2022-03-29 12:39:28 +00:00
commit 6f36d161cb
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]?) {