Is it possible to show selected options in mat-select with long strings in two lines within the same dropdown? Currently, the string appears incomplete.
You can see an example of this issue here: incomplete string example
<mat-form-field class="form-field">
<mat-select formControlName="foo">
<mat-option value="Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s
</mat-option>
</mat-select>
</mat-form-field>
I am looking for a solution similar to this: example complete selected option