Simple_form: Remove outer label for an inline checkbox with label

前端 未结 6 1487
盖世英雄少女心
盖世英雄少女心 2021-02-02 07:14

Using Simple_form 2.0.2

The simple form code using HAML:

= f.input :remember_me, as: :boolean, inline_label: \'Remember me\'

But it ren

6条回答
  •  面向向阳花
    2021-02-02 07:58

    .control-group.error .help-inline {
      display: none;
    }
    

    This should work, it works for me on rails 3.2 and simple_form 2.x+

提交回复
热议问题