diff --git a/src/registrar/templates/domain_dns.html b/src/registrar/templates/domain_dns.html index b16c1cb8b..45529a19e 100644 --- a/src/registrar/templates/domain_dns.html +++ b/src/registrar/templates/domain_dns.html @@ -14,7 +14,7 @@ {% url 'domain-dns-nameservers' pk=domain.id as url %}

DNS name servers

- {% url 'domain-dnssec' pk=domain.id as url %} + {% url 'domain-dns-dnssec' pk=domain.id as url %}

DNSSEC

{% endblock %} {# domain_content #} diff --git a/src/registrar/views/domain.py b/src/registrar/views/domain.py index 1058c537a..90e915a60 100644 --- a/src/registrar/views/domain.py +++ b/src/registrar/views/domain.py @@ -382,7 +382,7 @@ class DomainDsDataView(DomainFormBaseView): # This is called when all DNSSEC data has been deleted and the # Save button is pressed - if len(formset) == 0 and formset.initial == [{}] and override == False: + if len(formset) == 0 and formset.initial != [{}] and override == False: # trigger the modal # get context data from super() rather than self # to preserve the context["form"]