diff --git a/app/views/registrar/domains/partials/_nameservers.haml b/app/views/registrar/domains/partials/_nameservers.haml index 2ab72d95a..66ef010e6 100644 --- a/app/views/registrar/domains/partials/_nameservers.haml +++ b/app/views/registrar/domains/partials/_nameservers.haml @@ -12,6 +12,6 @@ - @data.css('hostAttr').each do |x| %tr %td= x.css('hostName').text - %td= x.css('hostAddr[ip="v4"]').text - %td= x.css('hostAddr[ip="v6"]').text + %td= Array(x.css('hostAddr[ip="v4"]')).map(&:text).join(", ") + %td= Array(x.css('hostAddr[ip="v6"]')).map(&:text).join(", ")