From 978b26a2ce1f53286424f5cc11b4bef3ee61e479 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 28 Apr 2023 11:45:45 +0200 Subject: [PATCH] external -> offbrand --- data/countries.json | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/countries.json b/data/countries.json index 26c560b..42983cd 100644 --- a/data/countries.json +++ b/data/countries.json @@ -1858,7 +1858,7 @@ "longitude": -97, "name": "Citadel Dispatch", "link_to_public_community_group": "https://citadeldispatch.com/", - "external": true + "offbrand": true }, { "country": "United States Minor Outlying Islands", diff --git a/index.html b/index.html index c34b115..4bb5730 100644 --- a/index.html +++ b/index.html @@ -52,7 +52,7 @@ title: Twentyone.World function getColor(iso) { let country = countries.find(c => c.alpha3 == iso); if (country && country.link_to_public_community_group) { - return country.external ? cWhite : cOrange; + return country.offbrand ? cWhite : cOrange; } return cGray; }