Skip to content

Commit

Permalink
fix: 515 bug part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ImRodry committed Jan 23, 2025
1 parent 01a460b commit 52c40b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/stations.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ async function openBikeList(stationSerialNumber) {
<div id="stationID">Estação ${stationObj.name.split("-")[0].trim()}</div>
<div id="stationDistance">${formatDistance(distanceToStation)}</div>
</div>
<div id="stationName">${stationObj.name.split("-")[1].trim()}</div>
<div id="stationName">${stationObj.name.split("-")[1]?.trim() ?? ""}</div>
<div id="listGradient"></div>
<ul id="bikeList">
<!-- Populate with the list here -->
Expand Down

0 comments on commit 52c40b5

Please sign in to comment.