I need help displaying my category options:
<div class="row" style="margin-bottom:15px;padding:0;padding-top:0px;padding-bottom:0px;">
<div class="col col-white" style="height:45px;background-color:#EDEEF1;padding-top:6px">
<div class="list" style="max-width:80%;margin-left:10%">
<label class="item item-input item-select" style="border:none;padding:0;border-radius:25px;color:black">
<div class="input-label" style="color:grey; margin-left:auto; margin-right:auto;z-index:9999">
{{selectedCategory.name.name ? selectedCategory.name.name : 'Choose category'}}
</div>
<select ng-click="test()" id="helloo" ng-model="selectedCategory" ng-options="category.name for category in categories">
<option selected value="">Choose category</option>
</select>
</label>
</div>
</div>
The category options are not showing up and I'm unsure why. Some suggest it could be related to innerHTML or CSS. This bug is really frustrating and I can't seem to find a solution!
Oddly enough, when I inspect the elements using Chrome Developer tools, I can see all the option tags, but they're not visible in my browser.
Any assistance would be greatly appreciated!