aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorjpl2017-04-21 15:15:35 +0200
committerjpl2017-04-21 15:15:35 +0200
commit82122043351d9881a23be2ea3402c33e9094d408 (patch)
tree0e65a8790149d32b7aa2a80431dfeb3b519460dd /app
parent05a17a73cdc1345cadb4725296f5d91486e818fa (diff)
downloadchouette-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.js8
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>
)