I can't seem to figure this one out, thought I might find some direction here.
So in my current project, I'm using gems simple_form and act_as_taggable_on. The product model has act_as_taggable_on :manufacturer_tags
. So naturally I would have a simple_form looking like this:
<%= f.input :manufacturer_tag_list, label: "custom label", hint: "cutsom hints" %>
The manufacturer_tag_list containing an array of tags in strings,I expected the input to display: nissan, honda, bmw but instead, I got: nissan honda bmw
How do I manipulate simple_form, so it would separate by ", " instead of space?
Thank you for your time!!