diff --git a/src/Libraries/CoreNodeModels/DropDown.cs b/src/Libraries/CoreNodeModels/DropDown.cs index 50586afaec0..71ec3ce9758 100644 --- a/src/Libraries/CoreNodeModels/DropDown.cs +++ b/src/Libraries/CoreNodeModels/DropDown.cs @@ -303,6 +303,7 @@ public void PopulateItems() // Restore the selection when selectedIndex is valid if (selectionState == SelectionState.Restore && !string.IsNullOrEmpty(currentSelection)) { + SelectedIndex = -1; for (int i = 0; i < items.Count; i++) { if (GetSelectedStringFromItem(items.ElementAt(i)).Equals(currentSelection))