Adding a space to a list from a multi option select field

Hi Team!

I want to add a space between each option (ie Goals: “x”, “y”) but the field used in KG is multi option select so i’m not sure how to do this!

Here is the code i used in the template.hbs file:
{{#*inline ‘goals’}}
{{#if card.goals}}

Goals: {{card.goals}}
{{/if}} {{/inline}}

thanks!!

Can you try the join method?

Should be something like,

goals: profile.yourField.join(', ')

Hey Aarti,

Another method you can try is to replicate the services field on the built-in location-standard card in the theme.

Let us know what works for you!

Thank you!! this worked!