Single column choices in display?

Hi all -
I'm working on a SharePoint online form, using a multiple select field as a "checklist" for users. I'm setting it to 1 column so it shows like a list in edit/new view, but in the display view it's listing them in paragraph form (removing the carriage returns).

Is there a way for me to display each choice option on its own line in display mode?

Display mode:
image

Edit mode (how we want it to show):
image

Dear @GGiacomo,
You can try the following JavaScript code:

fd.spRendered(function(){
    var values = fd.field('Tasks').displayValue.replaceAll(',','<br>');
    fd.field('Tasks').$el.innerHTML = values;
});
1 Like