From 234d069f74499872a1d6612dc1c3dff418c52f20 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Wed, 5 Nov 2025 12:33:31 +0100 Subject: Refactor LineIcon component to display the original line name and adjust StopSheet styles for better layout --- src/frontend/app/components/LineIcon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/frontend/app/components/LineIcon.tsx') diff --git a/src/frontend/app/components/LineIcon.tsx b/src/frontend/app/components/LineIcon.tsx index 55e38c2..ef05987 100644 --- a/src/frontend/app/components/LineIcon.tsx +++ b/src/frontend/app/components/LineIcon.tsx @@ -20,7 +20,7 @@ const LineIcon: React.FC = ({ line, region = "vigo", rounded = fa className={rounded ? 'line-icon-rounded' : 'line-icon'} style={{ '--line-colour': `var(${cssVarName})`, '--line-text-colour': `var(${cssTextVarName}, unset)` } as React.CSSProperties} > - {formattedLine} + {line} ); }; -- cgit v1.3