Skip to content

Commit 68ec234

Browse files
AB#137 Improve how transfers are displayed
1 parent cd7dd86 commit 68ec234

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

app/component/itinerary/Itinerary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ const Itinerary = (
647647
isTransitLeg={false}
648648
mode={LegMode.Wait}
649649
large={breakpoint === 'large'}
650-
icon={usingOwnCarWholeTrip ? 'icon_wait-car' : undefined}
650+
icon={usingOwnCarWholeTrip ? 'icon_wait-car' : 'icon_wait_sitting'}
651651
/>,
652652
);
653653
}

app/component/itinerary/Legs.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,9 @@ export default class Legs extends React.Component {
189189
start={leg.end}
190190
waitTime={waitTime}
191191
focusAction={this.focus(leg.to)}
192-
icon={usingOwnCarWholeTrip ? 'icon_wait-car' : undefined}
192+
icon={
193+
usingOwnCarWholeTrip ? 'icon_wait-car' : 'icon_wait_sitting'
194+
}
193195
>
194196
{stopCode(leg.to.stop)}
195197
</WaitLeg>

app/component/itinerary/StartNavi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const StartNavi = ({ startNavigation }, context) => {
1515
<button type="button" onClick={startNavigation}>
1616
<Icon
1717
className="navigation-icon"
18-
img="icon_navigation"
18+
img="icon_wait_standing"
1919
color={color}
2020
omitViewBox
2121
/>

app/component/itinerary/navigator/NaviCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const iconMap = {
1414
CAR: 'icon_car',
1515
SCOOTER: 'icon_scooter_rider',
1616
WALK: 'icon_walk',
17-
WAIT: 'icon_navigation_wait',
17+
WAIT: 'icon_wait_sitting',
1818
CALL: 'icon_call',
1919
WAIT_IN_VEHICLE: 'icon_wait',
2020
};

app/component/itinerary/navigator/NaviStarter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const NaviStarter = (
6060
) : (
6161
<Icon
6262
aria-hidden="true"
63-
img="icon_navigation_wait"
63+
img="icon_wait_sitting"
6464
className="mode"
6565
height={2}
6666
width={2}

static/assets/svg-sprite.default.svg

Lines changed: 3 additions & 3 deletions
Loading

static/assets/svg-sprite.hsl.svg

Lines changed: 3 additions & 3 deletions
Loading

0 commit comments

Comments
 (0)