1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +00:00

Fix removed ip_pool type errors (#62)

* Fix undefined method description

Sice `:description` was removed from the IP pools it should display the IP pool `:name` instead of the `:description`.

* Fix using the removed ip_pool type
هذا الالتزام موجود في:
Alex Bouma
2017-04-29 20:42:29 +02:00
ملتزم من قبل Adam Cooke
الأصل f779e45f45
التزام ddf2a859bf
2 ملفات معدلة مع 2 إضافات و2 حذوفات

عرض الملف

@@ -25,7 +25,7 @@
.fieldSet__field
= f.label :ip_pool_id, :class => 'fieldSet__label'
.fieldSet__input
= f.collection_select :ip_pool_id, organization.ip_pools.includes(:ip_addresses).order("`default` desc, name asc"), :id, :description, {}, :class => 'input input--select'
= f.collection_select :ip_pool_id, organization.ip_pools.includes(:ip_addresses).order("`default` desc, name asc"), :id, :name, {}, :class => 'input input--select'
%p.fieldSet__text
This is the set of IP addresses which outbound e-mails will be delivered from.