Custom Modules: remove "," from multi select field output

Custom Modules: Is there way to render a multi select “List Checkbox List” output without the “,” in-between the options if 2 or more checkboxes are selected.

For example:
Custom property “JobRole” when selecting two boxes eg: “Manager” and “Administrator” the tag {{this[JobRole]}} renders the selection as “Manger,Adminstrator”

Is there a way to remove the “,” in-between the two options and have the output: “Manager Administrator” instead?

Thank you for any help in advance.

Cheers, Erik

Hi @Erik
The replace filter will work well here, eg:

{{this[JobRole] | replace: ',', ' '}}

More info: https://docs.treepl.co/liquid/liquid-filters#secStringReplace

Adam, Legend. Thank you. Cheers, Erik