What size screen are you viewing the form on? I just tried creating a single select with long text of varying lengths. In a form view, none of them cut off after only four words. They did cut off eventually, but it was more like 16 words for the longest one (lots of short words). I even tried viewing my test form on my phone, but it only cropped the long entries based on the screen width.
Unfortunately there aren’t any options to word-wrap the entries for single- or multiple-select fields. One possible way to work around this is to make the actual single-select choices short, and use the optional “help text” in the form field setup as the place to put the longer description tied to each item:
If you want to see these longer descriptions in your base, make a formula field that uses the SWITCH()
function to display the related long text for each short choice:
SWITCH(
Item,
"Blue", "Just the best color in the whole dang universe",
"Green", "Totally trounces blue in every way",
"Orange", "Smart!"
)