Skip to content

Commit

Permalink
Fix font size in location column (#9230)
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat authored Mar 4, 2025
1 parent 0d1ab4e commit d5a176c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/frontend/src/tables/ColumnRenderers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,14 @@ export function LocationColumn(props: TableColumnProps): TableColumn {

if (!location) {
return (
<Text style={{ fontStyle: 'italic' }}>{t`No location set`}</Text>
<Text
size='sm'
style={{ fontStyle: 'italic' }}
>{t`No location set`}</Text>
);
}

return <Text>{location.name}</Text>;
return <Text size='sm'>{location.name}</Text>;
},
...props
};
Expand Down

0 comments on commit d5a176c

Please sign in to comment.