aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcedricnjanga2018-01-09 15:22:08 +0100
committercedricnjanga2018-01-09 15:25:53 +0100
commit23b415c7dfddc46f828047402879389100181049 (patch)
tree452c01a65ad931f2572c1c5f6d4b6b59bcd218c7
parenta968ceb2a1774c19bea6645d3061c43fc46e1c8d (diff)
downloadchouette-core-23b415c7dfddc46f828047402879389100181049.tar.bz2
Fix display order or VJ metadatas
-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 e1935ff10..8344a951a 100644
--- a/app/javascript/vehicle_journeys/components/VehicleJourney.js
+++ b/app/javascript/vehicle_journeys/components/VehicleJourney.js
@@ -69,8 +69,8 @@ export default class VehicleJourney extends Component {
>
<div className='strong mb-xs'>{this.props.value.short_id || '-'}</div>
<div>{this.props.value.published_journey_name && this.props.value.published_journey_name != "non renseigné" ? this.props.value.published_journey_name : '-'}</div>
- <div>{this.props.value.company ? this.props.value.company.name : '-'}</div>
<div>{this.props.value.journey_pattern.short_id || '-'}</div>
+ <div>{this.props.value.company ? this.props.value.company.name : '-'}</div>
<div>
{time_tables.slice(0,3).map((tt, i)=>
<span key={i} className='vj_tt'>{this.timeTableURL(tt)}</span>