Skip to content

Conversation

@AdiAmar1
Copy link

No description provided.

.then(countries => {
const template=document.querySelector(".country[data-country-name]")
const grid=document.querySelector(".countries-grid");

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ensure template and grid are not null

dropdownItems.forEach(item => {
item.addEventListener("click", (event) => {
const region = event.target.getAttribute("data-region");

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check if data-region is missing before proceeding.
if (!region) return;

dropdownWrapper.classList.toggle("open");
});

document.addEventListener("click",(event)=>{
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a check to ensure dropdownWrapper and dropdownHeader exist to avoid potential errors if they are not present in the DOM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants