mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
chore: removed displaying exit track speeds if they are the same as the base ones
This commit is contained in:
@@ -68,7 +68,8 @@
|
||||
<span>
|
||||
|
|
||||
{{
|
||||
stop.departureLineInfo.routeSpeedExit
|
||||
stop.departureLineInfo.routeSpeedExit &&
|
||||
stop.departureLineInfo.routeSpeedExit != stop.departureLineInfo.routeSpeed
|
||||
? `${stop.departureLineInfo.routeSpeedExit} (${stop.departureLineInfo.routeSpeed})`
|
||||
: stop.departureLineInfo.routeSpeed
|
||||
}}</span
|
||||
@@ -121,10 +122,16 @@
|
||||
<span> {{ stop.nextPointRef.arrivalLine }}</span>
|
||||
|
||||
<span v-if="stop.nextPointRef.arrivalLineInfo">
|
||||
<span> | {{ stop.nextPointRef.arrivalLineInfo!.routeSpeed }}</span>
|
||||
<span v-if="stop.nextPointRef.arrivalLineInfo!.routeSpeedExit"
|
||||
>({{ stop.nextPointRef.arrivalLineInfo!.routeSpeedExit }})</span
|
||||
<span> | {{ stop.nextPointRef.arrivalLineInfo.routeSpeed }}</span>
|
||||
<span
|
||||
v-if="
|
||||
stop.nextPointRef.arrivalLineInfo.routeSpeedExit &&
|
||||
stop.nextPointRef.arrivalLineInfo.routeSpeedExit !=
|
||||
stop.nextPointRef.arrivalLineInfo.routeSpeed
|
||||
"
|
||||
>
|
||||
({{ stop.nextPointRef.arrivalLineInfo.routeSpeedExit }})
|
||||
</span>
|
||||
|
||||
<img
|
||||
:src="
|
||||
|
||||
Reference in New Issue
Block a user