Reputation: 1
We recently migrated to Angular 17 from v15. For all the drop downs in , is automatically created and the tick mark is seen for the option selected. Can someone advise how to remove these pseduo checkboxes. I don't see any documentation for pesudo-checkbox anywhere including in material.angular.io. Thanks a lot. Vijay
I tried by putting mat-pseudo-checkbox by applying style display: none but didn't worked.
Upvotes: 0
Views: 1011
Reputation: 3
The answer in the comments solves my problem:
<mat-select hideSingleSelectionIndicator>...</mat-select>
Upvotes: 0