diff options
| author | Zog | 2018-04-04 16:18:13 +0200 |
|---|---|---|
| committer | Zog | 2018-04-04 16:38:13 +0200 |
| commit | a7d1d50b90def9d6cb9c224cdccae698ecbaba22 (patch) | |
| tree | bcb0725f0554a0613e4b75443a9cb0ecefe0582d /app/javascript/journey_patterns/actions | |
| parent | 3bb7934e1c69c42597239611f0870abde5ef5626 (diff) | |
| download | chouette-core-a7d1d50b90def9d6cb9c224cdccae698ecbaba22.tar.bz2 | |
Refs #6213; Fix JourneyPattern editor6213-fix-journey-pattern-editor
Fix a bug when a Route uses the same stop multiple times
Diffstat (limited to 'app/javascript/journey_patterns/actions')
| -rw-r--r-- | app/javascript/journey_patterns/actions/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/journey_patterns/actions/index.js b/app/javascript/journey_patterns/actions/index.js index 666157ea4..ea54f4e05 100644 --- a/app/javascript/journey_patterns/actions/index.js +++ b/app/javascript/journey_patterns/actions/index.js @@ -43,7 +43,7 @@ const actions = { }), updateCheckboxValue : (e, index) => ({ type : 'UPDATE_CHECKBOX_VALUE', - id : e.currentTarget.id, + position : e.currentTarget.id, index }), checkConfirmModal : (event, callback, stateChanged,dispatch) => { |
