diff options
| author | Luc Donnet | 2018-02-01 17:39:25 +0100 |
|---|---|---|
| committer | GitHub | 2018-02-01 17:39:25 +0100 |
| commit | f6b2a0b17591a786d41ba77ba1a2664223fc4b96 (patch) | |
| tree | 7db780a7ea455bb182e5fd9a1ef1830d43d2795f /app/javascript/packs | |
| parent | c172bdb34862b6b48ea52e0de71a9444f14c2478 (diff) | |
| parent | b91895f897f6a9b401844e373d020c3f458fc130 (diff) | |
| download | chouette-core-f6b2a0b17591a786d41ba77ba1a2664223fc4b96.tar.bz2 | |
Merge pull request #273 from af83/5798-show-return-times-on-vjs-editor
5798 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') ) |
