528b7ec3f8
used for the `required` html attribute. It check visibility to avoid hidden required input which prevent the form from being sent.
9 lines
241 B
Text
9 lines
241 B
Text
.mesri-inputs
|
|
%div
|
|
= @form.label :ine, t('.ine_label')
|
|
%p.notice= t('.ine_notice')
|
|
= @form.text_field :ine,
|
|
required: @champ.required?,
|
|
aria: { describedby: @champ.describedby_id },
|
|
class: "width-33-desktop"
|
|
|