Turn spellcheck off

#661
This commit is contained in:
Artur Beljajev 2018-02-26 13:02:55 +02:00
parent ed1600a787
commit b6a0c04571

View file

@ -5,7 +5,9 @@
</div>
<div class="col-md-5">
<%= text_field_tag :old_hostname, params[:old_hostname], autofocus: true, required: true,
<%= text_field_tag :old_hostname, params[:old_hostname], autofocus: true,
required: true,
spellcheck: false,
class: 'form-control' %>
</div>
</div>
@ -16,7 +18,9 @@
</div>
<div class="col-md-5">
<%= text_field_tag :new_hostname, params[:new_hostname], required: true, class: 'form-control' %>
<%= text_field_tag :new_hostname, params[:new_hostname], required: true,
spellcheck: false,
class: 'form-control' %>
</div>
</div>
@ -26,7 +30,7 @@
</div>
<div class="col-md-3">
<%= text_area_tag :ipv4, params[:ipv4], class: 'form-control' %>
<%= text_area_tag :ipv4, params[:ipv4], spellcheck: false, class: 'form-control' %>
</div>
</div>
@ -36,7 +40,7 @@
</div>
<div class="col-md-3">
<%= text_area_tag :ipv6, params[:ipv6], class: 'form-control' %>
<%= text_area_tag :ipv6, params[:ipv6], spellcheck: false, class: 'form-control' %>
<span class="help-block"><%= t '.ip_hint' %></span>
</div>
</div>