Is it necessary to map to labels and values in order to show values on dropdown ?
I'm trying to show enums on my dropdown but they are not displaying correctly !
export enum nature
{
annuelle="Annuelle",
semestrielle="Semestrielle",
trimestrielle="Trimestrielle"
}
naturevalues = Object.values(nature);
<div class="ui-grid-col-6">
<p-dropdown [options]="naturevalues" formControlName="nature"></p-dropdown>
</div>
I can see the chosen value on the console
I tried to add optionLabel="value" but in vain