fixed bug preventing display of domains when no portfolio

This commit is contained in:
David Kennedy 2024-06-24 13:13:39 -04:00
parent 0d6daef48b
commit 9341dbf0b5
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -1266,10 +1266,12 @@ document.addEventListener('DOMContentLoaded', function() {
resetHeaders(); resetHeaders();
}); });
statusToggle.addEventListener('click', function() { if (statusToggle) {
console.log('clicked') statusToggle.addEventListener('click', function() {
toggleCaret(statusToggle); console.log('clicked')
}); toggleCaret(statusToggle);
});
}
// Add event listeners to status filter checkboxes // Add event listeners to status filter checkboxes
statusCheckboxes.forEach(checkbox => { statusCheckboxes.forEach(checkbox => {