diff options
| author | Zog | 2018-02-01 10:34:40 +0100 |
|---|---|---|
| committer | Zog | 2018-02-01 10:34:40 +0100 |
| commit | d114d549f7bc8a772803175dee9a665266d8ed04 (patch) | |
| tree | 228fa0008b6938d4d7682896df1d9578abdce872 /app/javascript/packs | |
| parent | 90f54f0acfe65ff276a229239809ce0e9fddf0b0 (diff) | |
| download | chouette-core-d114d549f7bc8a772803175dee9a665266d8ed04.tar.bz2 | |
Refs #5798 @3h; Show return journeys on the journeys' editor.
Diffstat (limited to 'app/javascript/packs')
| -rw-r--r-- | app/javascript/packs/vehicle_journeys/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/javascript/packs/vehicle_journeys/index.js b/app/javascript/packs/vehicle_journeys/index.js index aa5738d59..e6867cb17 100644 --- a/app/javascript/packs/vehicle_journeys/index.js +++ b/app/javascript/packs/vehicle_journeys/index.js @@ -60,6 +60,7 @@ var initialState = { }, vehicleJourneys: [], stopPointsList: window.stopPoints, + returnStopPointsList: window.returnStopPoints, pagination: { page : 1, totalCount: 0, @@ -99,7 +100,7 @@ let store = createStore( render( <Provider store={store}> - <App /> + <App returnRouteUrl={window.returnRouteUrl} /> </Provider>, document.getElementById('vehicle_journeys_wip') ) |
