I have a dropdown that I am trying to populate dynamically using the following data set
this.additionalPercentages = this.offer.offerData.wellbeing.retirementPackages[0].additionalVoluntaryContributionPercentages;
this.additionalPercentages is consoled and looking like this: [5, 6]
<p-dropdown
(onChange) = "getAdditionalPercentage($event)"
class="fund-dropdown"
[options]="additionalPercentages"
[showClear]="false"
></p-dropdown>
After doing this, I see that the dropdown is blank with no errors in the console either. Any ideas?