nameservers in registrar show with comma

This commit is contained in:
Vladimir Krylov 2015-12-01 01:25:48 +02:00
parent fa7cf13bf4
commit 59066b4487

View file

@ -12,6 +12,6 @@
- @data.css('hostAttr').each do |x| - @data.css('hostAttr').each do |x|
%tr %tr
%td= x.css('hostName').text %td= x.css('hostName').text
%td= x.css('hostAddr[ip="v4"]').text %td= Array(x.css('hostAddr[ip="v4"]')).map(&:text).join(", ")
%td= x.css('hostAddr[ip="v6"]').text %td= Array(x.css('hostAddr[ip="v6"]')).map(&:text).join(", ")