diff options
| author | jpl | 2017-04-21 15:15:35 +0200 |
|---|---|---|
| committer | jpl | 2017-04-21 15:15:35 +0200 |
| commit | 82122043351d9881a23be2ea3402c33e9094d408 (patch) | |
| tree | 0e65a8790149d32b7aa2a80431dfeb3b519460dd /app | |
| parent | 05a17a73cdc1345cadb4725296f5d91486e818fa (diff) | |
| download | chouette-core-82122043351d9881a23be2ea3402c33e9094d408.tar.bz2 | |
Refs #3152: Adding exception links DOM (fixing sens)
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/javascripts/es6_browserified/time_tables/components/ExceptionsInDay.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/es6_browserified/time_tables/components/ExceptionsInDay.js b/app/assets/javascripts/es6_browserified/time_tables/components/ExceptionsInDay.js index 8a2681c87..6d7dd4442 100644 --- a/app/assets/javascripts/es6_browserified/time_tables/components/ExceptionsInDay.js +++ b/app/assets/javascripts/es6_browserified/time_tables/components/ExceptionsInDay.js @@ -17,9 +17,9 @@ class ExceptionsInDay extends Component { <button type='button' className='btn btn-circle' - data-actiontype='add' + data-actiontype='remove' > - <span className='fa fa-plus'></span> + <span className='fa fa-times'></span> </button> </div> ) @@ -29,9 +29,9 @@ class ExceptionsInDay extends Component { <button type='button' className='btn btn-circle' - data-actiontype='remove' + data-actiontype='add' > - <span className='fa fa-times'></span> + <span className='fa fa-plus'></span> </button> </div> ) |
