Merge branch 'feature/ItemDropdown_anyValueChangeValidation_issue' into 'develop'

anyValueChanged validation issue fixed for ItemDropdownEntryField

See merge request BPHV_MIPS/mvm_core_ui!554
This commit is contained in:
Pfeil, Scott Robert 2020-08-03 11:38:56 -04:00
commit e119e269b8

View File

@ -45,6 +45,7 @@
if let selectedIndex = try typeContainer.decodeIfPresent(Int.self, forKey: .selectedIndex) {
self.selectedIndex = selectedIndex
}
baseValue = options.indices.contains(selectedIndex) ? options[selectedIndex] : nil
}
public override func encode(to encoder: Encoder) throws {