From eaf78d73c7fe979d6b7f7aa5901350f495a48839 Mon Sep 17 00:00:00 2001 From: Daniel Hamann Date: Thu, 27 Nov 2025 15:16:58 +0100 Subject: [PATCH 1/3] fix select-pricing-plan --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c99175c..5180fd5 100644 --- a/index.js +++ b/index.js @@ -32,7 +32,7 @@ function addEventListeners() { const selectPricingPlan = document.getElementById("select-pricing-plan"); selectPricingPlan.addEventListener("change", async => { - selectedPricingIndex = selectPricingPlan.value; + currentPricingOptions.selectedPricingIndex = selectPricingPlan.value; refreshPricing(currentPricingOptions); }); From 7dfae2e5528395edf7f5894f2f40bf6fb3ca8fa4 Mon Sep 17 00:00:00 2001 From: Daniel Hamann Date: Thu, 27 Nov 2025 15:17:52 +0100 Subject: [PATCH 2/3] add space between price and currency --- javascript/pricing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/pricing.js b/javascript/pricing.js index d14c445..6c8447f 100644 --- a/javascript/pricing.js +++ b/javascript/pricing.js @@ -67,5 +67,5 @@ async function refreshPricing({ } if (pricingPlan.per_km_pricing !== undefined) { price += await getGbfsPricePerKm(pricingPlan, currentDistance) } - document.getElementById("price").textContent = price + pricingPlan.currency; + document.getElementById("price").textContent = price + " " + pricingPlan.currency; } \ No newline at end of file From d7e186178440e016eac102f3a5259cddf5230768 Mon Sep 17 00:00:00 2001 From: Richard Zimmermann Date: Tue, 2 Dec 2025 15:01:11 +0100 Subject: [PATCH 3/3]