I have a multi select dropdown as below-
<ng-multiselect-dropdown [placeholder]="'Select name'"
[data]="dropdownList" [(ngModel)]="selectedItems"
[settings]="dropdownSettings">
</ng-multiselect-dropdown>
When I'm selecting the options it's breaking the line if the option has two words. For example- If my options are
- Adrian Wallhart
- Cillian Robertson
I don't want the words to get to the next line.
But I want it to be like this-

Can anyone help me with this?
