528b7ec3f8
used for the `required` html attribute. It check visibility to avoid hidden required input which prevent the form from being sent.
6 lines
176 B
Text
6 lines
176 B
Text
~ @form.text_area :value,
|
|
id: @champ.input_id,
|
|
aria: { describedby: @champ.describedby_id },
|
|
rows: 6,
|
|
required: @champ.required?,
|
|
value: html_to_string(@champ.value)
|