aboutsummaryrefslogtreecommitdiffstats
path: root/app/javascript/vehicle_journeys/components
diff options
context:
space:
mode:
authorAlban Peignier2017-12-27 21:58:51 +0100
committerGitHub2017-12-27 21:58:51 +0100
commite045504dc8b3eb8d73d30eb04efb4116eabd8a4e (patch)
treef4273d42aefe0513a12b84d90ccf2652c1120c3b /app/javascript/vehicle_journeys/components
parentfdae84e447a09e8dac6b7f3167a35c209db342a6 (diff)
parentee7610328bc3af35cadfe7c3fde6bf61ab8c9dbf (diff)
downloadchouette-core-e045504dc8b3eb8d73d30eb04efb4116eabd8a4e.tar.bz2
Merge pull request #181 from af83/5137-timetable-color
Fix VJ tt color affectation. Refs #5408
Diffstat (limited to 'app/javascript/vehicle_journeys/components')
-rw-r--r--app/javascript/vehicle_journeys/components/VehicleJourney.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/vehicle_journeys/components/VehicleJourney.js b/app/javascript/vehicle_journeys/components/VehicleJourney.js
index 929cbc5c4..5769a810a 100644
--- a/app/javascript/vehicle_journeys/components/VehicleJourney.js
+++ b/app/javascript/vehicle_journeys/components/VehicleJourney.js
@@ -22,7 +22,7 @@ export default class VehicleJourney extends Component {
let ttURL = refURL + '/time_tables/' + tt.id
return (
- <a href={ttURL} title='Voir le calendrier'><span className='fa fa-calendar' style={{color: (tt.color ? tt.color : '')}}></span></a>
+ <a href={ttURL} title='Voir le calendrier'><span className='fa fa-calendar' style={{ color: (tt.color ? tt.color : '#4B4B4B')}}></span></a>
)
}