Need help with adjusting the dropdown height for the ng-select form image. Currently, it is only displaying 5 items and I would like it to show 8-10 items. Below is the code I am using:
<form [formGroup]="addReportForm" class="form-horizontal col-xs-12" method="post" novalidate="novalidate" style="width: 100%;">
<div class="form-group">
<label for="adb-name">Name</label>
<input id="adb-name" class="form-control text-16-normal" type="text" placeholder="Name" formControlName="name">
</div>
<div class="form-group">
<label for="adb-report">Type</label>
<ng-select
id="adb-report"
[items]="allReports"
[multiple]="false"
[closeOnSelect]="true"
[searchable]="true"
bindLabel="name"
bindValue="id"
formControlName="vizType"
placeholder="Select Report"
(change)="onChange($event)"
[(ngModel)]="reportName"
>
</ng-select>
</div>
<app-alert></app-alert>
</form>