Encountering a peculiar issue with multiple select boxes in my project. Some of the options within the select box are exceeding the width of the box.
Proper Dropdown View:
https://i.sstatic.net/xDy6I.jpg
Incorrect Dropdown Display:
https://i.sstatic.net/S26f8.jpg
Snippet of Code:
<div class="form-group">
<label id="lbl_crms_customer_add_sector_title">{{'CRMS.CUSTOMER.FORM_LABEL.SECTOR' | translate}}</label> <span class="inactive_text"> *</span>
<select id="lbl_crms_customer_add_sector_value" class="custom-select" #sector="ngModel" name="sector" [ngModel]="BasicInfoDetails.sector">
<!-- <option selected value="">--</option> -->
<option *ngFor="let sectorobj of sectorList" value="{{sectorobj}}">{{sectorobj}}</option>
</select>
<span><input-errors [control]="sector"></input-errors></span>
</div>
Please note that these options are dynamically loaded from the server. Looking forward to receiving quick solutions from you all :)