Is there a way to customize the message 'no results found' in p-multiselect on Angular? I have successfully changed the default label, but I am struggling to find a solution to override the empty message.
Here is my code snippet:
<p-multiSelect
[options]="countries"
formControlName="selectedCountries"
[defaultLabel]="'find'"
selectedItemsLabel="{0} items selected"
autoWidth="false" [style]="{'width':'100%'}"
display="chip"></p-multiSelect>
I came across this workaround:
.ui-multiselect-panel .ui-multiselect-empty-message {
display: none !important;
}
However, this approach removes the entire div element.