Is there a way to hide the dropdown arrow in an 'ng-select' element in Angular?
<div class="col-md-6">
<ng-select
id="selectServiceType"
[items]="clientServiceTypes$ | async"
placeholder="Select service type"
bindLabel="name"
[(ngModel)]="selectedServiceType"
[clearable]="false"
[readonly]="fieldNotEditable() || serviceTypesReadonly"
></ng-select>
</div>