In many of my projects, I use simple_form and love it. However, one strange quirk that I find is that I get 3 small dots under *, which it supplies for the required fields.
I need to get around this:
= f.input :name, :label => '*', :required => false
This is useless because a field is required, so this code looks ugly.
Is there a better solution for what seems like a common problem?
source
share