diff --git a/java/google/registry/ui/js/registrar/contact_settings.js b/java/google/registry/ui/js/registrar/contact_settings.js index 5b0c8444f..c5daf2844 100644 --- a/java/google/registry/ui/js/registrar/contact_settings.js +++ b/java/google/registry/ui/js/registrar/contact_settings.js @@ -115,7 +115,9 @@ registry.registrar.ContactSettings.prototype.renderItem = function(rspObj) { var contact = contacts[c]; var types = contact.types; if (!types) { - continue; + // If the contact has no types, synthesize an "OTHER" type so that it + // still will be displayed in the console. + types = 'OTHER'; } types = types.split(','); for (var t in types) { diff --git a/java/google/registry/ui/soy/registrar/ContactSettings.soy b/java/google/registry/ui/soy/registrar/ContactSettings.soy index d61e9b42c..2edb2d69f 100644 --- a/java/google/registry/ui/soy/registrar/ContactSettings.soy +++ b/java/google/registry/ui/soy/registrar/ContactSettings.soy @@ -25,7 +25,8 @@ ['legal', 'Legal', 'Contact for all legal communications.'], ['marketing', 'Marketing', 'Contact for registry promotions and campaigns.'], ['abuse', 'Abuse', 'Contact for abuse complaints.'], - ['whois', 'WHOIS-Inquiry', 'Contact for inquiries about WHOIS accuracy.']] /} + ['whois', 'WHOIS-Inquiry', 'Contact for inquiries about WHOIS accuracy.'], + ['other', 'Other', 'Contact that is none of the above types']] /}