Skip to content

Commit

Permalink
Update boys.js
Browse files Browse the repository at this point in the history
forcing order of boys column
  • Loading branch information
StrongereCommerce authored Sep 18, 2023
1 parent 9e9b051 commit 6db4fcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assets/js/boys.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ function populateTableForBoys(size) {
tableHeader.innerHTML = "";
tableBody.innerHTML = "";

const currentFits = Object.keys(sizeData[size] || {});
// const currentFits = Object.keys(sizeData[size] || {});
const currentFits = ["slim", "extra", "super", "classic", "traditional", "husky"];
const allFits = new Set(currentFits);

// Generate the table header dynamically
Expand Down

0 comments on commit 6db4fcd

Please sign in to comment.