I have a multiple select field that is shown on an email. How can I add a line break to split the items up so if there are multiple items they are not on 1 line?
c
creece
05/18/2023, 6:29 PM
is it showing a string joined with "\u0005"? Multi-selects have this weird break in them so you'd have to split it out
p
pen one
05/18/2023, 7:41 PM
nope. just showing each option as 1 string. For example - if the user selected Option 1, Option 2 and Option 3 - the email is printing it as Option 1. Option 2. Option 3.
What I really want is:
• Option 1
• Option 2
• Option 3
e
Eric B
05/19/2023, 12:29 AM
do a split on the field on "\u0005" and then redraw the options using <ul><li></li></ul> constructs