Skip to content

Commit

Permalink
Handle new eligible to order case
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePrior authored Aug 4, 2024
1 parent 5d78eac commit 7652b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function getDotType(tech, upgrade, date, status, generated) {

// Eligible for immediate upgrade
upgrade_type = upgrade.split("_")[0]
if (status == "Eligible To Order") {
if (status == "Eligible To Order" || status == "Eligible to Order") {
return (upgrade_type == "FTTP") ? dotTypes.FTTPUpgrade : dotTypes.OtherUpgrade;
}

Expand Down

0 comments on commit 7652b96

Please sign in to comment.