aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/StopItem.tsx
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-12-28 18:21:17 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-12-28 18:21:30 +0100
commitb2ddc0ef449ccbe7f0d33e539ccdfc1baef04e2c (patch)
treee097f7e990a610762d8c4297f82147c57b4635fd /src/frontend/app/components/StopItem.tsx
parent4fb2fe683b75464917dec4b1a0aaee63830f3b9a (diff)
Get favourite stops from OTP instead of pre-generated file
Diffstat (limited to 'src/frontend/app/components/StopItem.tsx')
-rw-r--r--src/frontend/app/components/StopItem.tsx11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/frontend/app/components/StopItem.tsx b/src/frontend/app/components/StopItem.tsx
index 9679b05..391e605 100644
--- a/src/frontend/app/components/StopItem.tsx
+++ b/src/frontend/app/components/StopItem.tsx
@@ -20,12 +20,17 @@ const StopItem: React.FC<StopItemProps> = ({ stop }) => {
{StopDataProvider.getDisplayName(stop)}
</span>
<span className="text-sm text-gray-600 dark:text-gray-400 ml-2">
- ({stop.stopId})
+ ({stop.stopCode || stop.stopId})
</span>
</div>
<div className="flex flex-wrap gap-1 mt-1">
- {stop.lines?.map((line) => (
- <LineIcon key={line} line={line} />
+ {stop.lines?.map((lineObj) => (
+ <LineIcon
+ key={lineObj.line}
+ line={lineObj.line}
+ colour={lineObj.colour}
+ textColour={lineObj.textColour}
+ />
))}
</div>
</Link>