Hi all,
I am having an issue with long text overlapping in the dropdown select in a traditional web app.
Is there a way to truncate this text?
Thank you
Hi Stefan,
Try to put following CSS in your screen where you have this dropdown.
.choices__list--dropdown .choices__item
{
white-space:nowrap;
}
Hope it helps, Thanks :)
Thank you Shweta!
This works perfectly