diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index 478accb351d..2d00cb9d30f 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -443,7 +443,7 @@ export class Dropdown implements OnInit,AfterViewInit,AfterContentInit,AfterView this.updateSelectedOption(this.value); this.selectedOption = this.findOption(this.value, this.optionsToDisplay); - if (!this.selectedOption) { + if (!this.selectedOption && this.value !== null) { this.value = null; this.onModelChange(this.value); }