mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
change allowed ips to textarea (#618)
This commit is contained in:
@@ -107,7 +107,8 @@
|
||||
<div class="field">
|
||||
<%= label f, :allowed_ips, "Allowed IPs", class: "label" %>
|
||||
<div class="control">
|
||||
<%= text_input f, :allowed_ips, class: "input #{input_error_class(f, :allowed_ips)}",
|
||||
<%= textarea f, :allowed_ips,
|
||||
class: "textarea #{input_error_class(f, :allowed_ips)}",
|
||||
disabled: @use_site_allowed_ips %>
|
||||
</div>
|
||||
<p class="help is-danger">
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
<%= label f, :allowed_ips, "Allowed IPs", class: "label" %>
|
||||
|
||||
<div class="control">
|
||||
<%= text_input f,
|
||||
<%= textarea f,
|
||||
:allowed_ips,
|
||||
placeholder: @placeholders[:allowed_ips],
|
||||
class: "input #{input_error_class(f, :allowed_ips)}" %>
|
||||
class: "textarea #{input_error_class(f, :allowed_ips)}" %>
|
||||
</div>
|
||||
|
||||
<p class="help is-danger">
|
||||
|
||||
Reference in New Issue
Block a user