diff --git a/src/registrar/assets/js/get-gov-admin.js b/src/registrar/assets/js/get-gov-admin.js index 7b92f1192..53eeb22a3 100644 --- a/src/registrar/assets/js/get-gov-admin.js +++ b/src/registrar/assets/js/get-gov-admin.js @@ -63,25 +63,6 @@ function openInNewTab(el, removeAttribute = false){ checkToListThenInitWidget('id_alternative_domains_to', 0); })(); -/** An IIFE to capitalize statuses in the Domain Application status dropdown -*/ -// (function (){ -// function capitalizeFirstLetterInDropdownOptions(dropdown_id) { -// // Grabs the status dropdown -// var selectElement = document.getElementById(dropdown_id); -// if (selectElement) { -// var options = selectElement.options; -// // Loop through each option, and convert to sentence case -// for (var i = 0; i < options.length; i++) { -// var option = options[i]; -// option.text = option.text.charAt(0).toUpperCase() + option.text.slice(1).toLowerCase(); -// } -// } -// } - -// capitalizeFirstLetterInDropdownOptions('id_status'); -// })(); - // Function to check for the existence of the "to" select list element in the DOM, and if and when found, // initialize the associated widget function checkToListThenInitWidget(toListId, attempts) { diff --git a/src/registrar/config/settings.py b/src/registrar/config/settings.py index 53ccd9f5d..cc779911a 100644 --- a/src/registrar/config/settings.py +++ b/src/registrar/config/settings.py @@ -79,7 +79,7 @@ secret_registry_cert = b64decode(secret("REGISTRY_CERT", "")) secret_registry_key = b64decode(secret("REGISTRY_KEY", "")) secret_registry_key_passphrase = secret("REGISTRY_KEY_PASSPHRASE", "") secret_registry_hostname = secret("REGISTRY_HOSTNAME") -# WILL REMOVE (TO PUSH TO SANDBOX) + # region: Basic Django Config-----------------------------------------------### # Build paths inside the project like this: BASE_DIR / "subdir". diff --git a/src/registrar/tests/test_reports.py b/src/registrar/tests/test_reports.py index b94316248..c9bbc3628 100644 --- a/src/registrar/tests/test_reports.py +++ b/src/registrar/tests/test_reports.py @@ -258,7 +258,7 @@ class ExportDataTest(TestCase): ) def tearDown(self): - # Dummy push - will remove + Domain.objects.all().delete() DomainInformation.objects.all().delete() User.objects.all().delete()