I am using multiselect component from prime ng. I am trying to change the label of the multiselect dropdown but it does not work. Please find my code below:
<p-multiSelect [options]="cities" [defaultLabel]="does not work" styleClass="citiesClass" (onChange)="onChange($event)">
</p-multiSelect>
How do I change default label for the multiselect component ?
Thanks