diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index e54dceffd4c..99250348bf8 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -492,7 +492,7 @@ export class Dropdown implements OnInit,AfterViewInit,AfterContentInit,AfterView this.updateSelectedOption(this.value); this.selectedOption = this.findOption(this.value, this.optionsToDisplay); - if (!this.selectedOption && ObjectUtils.isNotEmpty(this.value)) { + if (!this.selectedOption && ObjectUtils.isNotEmpty(this.value) && !this.editable) { this.value = null; this.onModelChange(this.value); }