diff --git a/secure/form-submissions.md b/secure/form-submissions.md
index 424618e..3b233a6 100644
--- a/secure/form-submissions.md
+++ b/secure/form-submissions.md
@@ -113,7 +113,9 @@ title: Form Submissions
const tdAsn = tr.insertCell();
const asn = row.asn;
- tdAsn.innerHTML = `AS${asn}`;
+ if (asn !== null) {
+ tdAsn.innerHTML = `AS${asn}`;
+ }
});
content.innerHTML = table.outerHTML;
history.pushState("", document.title, window.location.pathname + window.location.search);