Skip to content

Commit 19ea126

Browse files
Merge pull request #466 from opentripplanner/dev
Fix Release Oct 5, 2021
2 parents aae17e0 + a07f9d9 commit 19ea126

File tree

6 files changed

+223
-144
lines changed

6 files changed

+223
-144
lines changed

i18n/en-US.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ components:
113113
next: Next
114114
previous: Previous
115115
RealtimeAnnotation:
116-
ignoreServiceDelays: Apply service delays
116+
applyServiceDelays: Apply service delays
117117
delaysNotShownInResults: "Your trip results are currently being affected by service delays.
118118
These delays do not factor into travel times shown below."
119119
delaysShownInResults: "Your trip results have been adjusted based on real-time

i18n/fr-FR.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ components:
8888
next: Suivant
8989
previous: Précédent
9090
RealtimeAnnotation:
91-
ignoreServiceDelays: Appliquer les retards
91+
applyServiceDelays: Appliquer les retards
9292
delaysNotShownInResults: "Vos trajets recherchés sont perturbés par des retards.
9393
Ces retards ne sont pas pris en compte dans les temps de trajet ci-dessous."
9494
delaysShownInResults: "Vos trajets recherchés ont été mis à jour avec les conditions en temps réel.

lib/components/app/default-main-panel.js

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class DefaultMainPanel extends Component {
2626
<div style={{
2727
bottom: showPlanTripButton ? 55 : 0,
2828
left: 0,
29+
overflowY: 'auto',
2930
paddingBottom: 15,
3031
position: 'absolute',
3132
right: 0,

lib/components/app/responsive-webapp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ class RouterWrapperWithAuth0 extends Component {
390390
showLoginError
391391
} = this.props
392392

393-
const router = (
393+
const router = localizedMessages && (
394394
<ComponentContext.Provider value={components}>
395395
<IntlProvider
396396
defaultLocale={defaultLocale}

package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,27 @@
3333
"homepage": "https://github.com/opentripplanner/otp-react-redux#readme",
3434
"dependencies": {
3535
"@auth0/auth0-react": "^1.1.0",
36-
"@opentripplanner/base-map": "^1.2.0",
37-
"@opentripplanner/core-utils": "^3.2.3",
38-
"@opentripplanner/endpoints-overlay": "^1.2.0",
39-
"@opentripplanner/from-to-location-picker": "^1.2.1",
36+
"@opentripplanner/base-map": "^2.0.0",
37+
"@opentripplanner/core-utils": "^4.1.0",
38+
"@opentripplanner/endpoints-overlay": "^1.3.0",
39+
"@opentripplanner/from-to-location-picker": "^1.3.0",
4040
"@opentripplanner/geocoder": "^1.1.1",
4141
"@opentripplanner/humanize-distance": "^1.1.0",
42-
"@opentripplanner/icons": "^1.1.0",
43-
"@opentripplanner/itinerary-body": "^2.3.1",
42+
"@opentripplanner/icons": "^1.2.0",
43+
"@opentripplanner/itinerary-body": "^2.4.0",
4444
"@opentripplanner/location-field": "^1.6.1",
45-
"@opentripplanner/location-icon": "^1.3.0",
46-
"@opentripplanner/park-and-ride-overlay": "^1.2.0",
47-
"@opentripplanner/printable-itinerary": "^1.2.0",
48-
"@opentripplanner/route-viewer-overlay": "^1.1.0",
49-
"@opentripplanner/stop-viewer-overlay": "^1.1.0",
50-
"@opentripplanner/stops-overlay": "^3.2.0",
51-
"@opentripplanner/transit-vehicle-overlay": "^2.2.0",
52-
"@opentripplanner/transitive-overlay": "^1.1.1",
53-
"@opentripplanner/trip-details": "^1.3.1",
54-
"@opentripplanner/trip-form": "^1.3.1",
55-
"@opentripplanner/trip-viewer-overlay": "^1.1.0",
56-
"@opentripplanner/vehicle-rental-overlay": "^1.2.0",
45+
"@opentripplanner/location-icon": "^1.4.0",
46+
"@opentripplanner/park-and-ride-overlay": "^1.2.2",
47+
"@opentripplanner/printable-itinerary": "^1.3.0",
48+
"@opentripplanner/route-viewer-overlay": "^1.1.1",
49+
"@opentripplanner/stop-viewer-overlay": "^1.1.1",
50+
"@opentripplanner/stops-overlay": "^3.3.1",
51+
"@opentripplanner/transit-vehicle-overlay": "^2.3.1",
52+
"@opentripplanner/transitive-overlay": "^1.1.2",
53+
"@opentripplanner/trip-details": "^1.4.0",
54+
"@opentripplanner/trip-form": "^1.4.0",
55+
"@opentripplanner/trip-viewer-overlay": "^1.1.1",
56+
"@opentripplanner/vehicle-rental-overlay": "^1.2.1",
5757
"blob-stream": "^0.1.3",
5858
"bootstrap": "^3.3.7",
5959
"bowser": "^1.9.3",

0 commit comments

Comments
 (0)