diff options
Diffstat (limited to 'src/frontend/app/components/Stops/ConsolidatedCirculationCard.tsx')
| -rw-r--r-- | src/frontend/app/components/Stops/ConsolidatedCirculationCard.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/frontend/app/components/Stops/ConsolidatedCirculationCard.tsx b/src/frontend/app/components/Stops/ConsolidatedCirculationCard.tsx index 97f0682..707ecce 100644 --- a/src/frontend/app/components/Stops/ConsolidatedCirculationCard.tsx +++ b/src/frontend/app/components/Stops/ConsolidatedCirculationCard.tsx @@ -207,7 +207,11 @@ export const ConsolidatedCirculationCard: React.FC< </div> {hasGpsPosition && ( <div className="gps-indicator" title="Live GPS tracking"> - <span className="gps-pulse" /> + <span + className={`gps-pulse ${ + estimate.isPreviousTrip ? "previous-trip" : "" + }`} + /> </div> )} <div className={`eta-badge ${timeClass}`}> |
