From 053b37ec3a457e6c6216f4917c5aa9c795c564ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Mar 2025 23:30:28 +1100 Subject: [PATCH] Fix font size in location column (#9230) (#9231) (cherry picked from commit d5a176c121713da4c479da57b16df3507870f797) Co-authored-by: Oliver --- src/frontend/src/tables/ColumnRenderers.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/tables/ColumnRenderers.tsx b/src/frontend/src/tables/ColumnRenderers.tsx index 0d25ff8b91..45d5fb48db 100644 --- a/src/frontend/src/tables/ColumnRenderers.tsx +++ b/src/frontend/src/tables/ColumnRenderers.tsx @@ -65,11 +65,14 @@ export function LocationColumn(props: TableColumnProps): TableColumn { if (!location) { return ( - {t`No location set`} + {t`No location set`} ); } - return {location.name}; + return {location.name}; }, ...props };