Using https://www.primefaces.org/primeng/#/dropdown the editable version of dropdown with filter
I am seeing that choosing an option shows the value instead of the label when selected.
code
<div class="col-md-5 col-xs-12"><p-dropdown [options]="metaAttributesOptions[n]" [filter]="true" editable="editable" [style]="{'width':'100%'}" *ngIf="metaAttributesOptions[n]" formControlName="value"></p-dropdown>
this.metaAttributesOptions.push(x.options.map(v => {
return {
label: v.name,
value: v.value
}
}));
