You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
If you select too long of an element it overflows out of the control. It looks like it's happening because the .btn class is applying white-space:nowrap.
Here's a quick/dirty/temporary fix for someone if they need it:
.ui-select-match-text{
display:inline-block;
overflow:hidden;
text-overflow: ellipsis;
width:95%;
}