Skip to content

Commit de030da

Browse files
committed
fix: always use white fill on transit leg end stops
1 parent d697995 commit de030da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/component/itinerary/ItineraryCircleLine.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class ItineraryCircleLine extends React.Component {
5353
xmlns="http://www.w3.org/2000/svg"
5454
width={28}
5555
height={28}
56-
style={{ fill: this.props.color, stroke: this.props.color }}
56+
style={{ fill: '#fff', stroke: this.props.color }}
5757
>
5858
<circle strokeWidth="4" width={28} cx={11} cy={10} r={6} />
5959
</svg>
@@ -100,7 +100,7 @@ class ItineraryCircleLine extends React.Component {
100100
xmlns="http://www.w3.org/2000/svg"
101101
width={28}
102102
height={28}
103-
style={{ fill: this.props.color, stroke: this.props.color }}
103+
style={{ fill: '#fff', stroke: this.props.color }}
104104
>
105105
<circle strokeWidth="4" width={28} cx={11} cy={10} r={6} />
106106
</svg>

app/component/itinerary/ItineraryCircleLineWithIcon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class ItineraryCircleLineWithIcon extends React.Component {
9494
xmlns="http://www.w3.org/2000/svg"
9595
width={28}
9696
height={28}
97-
style={{ fill: this.props.color, stroke: this.props.color }}
97+
style={{ fill: '#fff', stroke: this.props.color }}
9898
>
9999
<circle strokeWidth="4" width={28} cx={11} cy={10} r={6} />
100100
</svg>

0 commit comments

Comments
 (0)