mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
Fix font size in location column (#9230)
This commit is contained in:
parent
0d1ab4e75a
commit
d5a176c121
@ -66,11 +66,14 @@ export function LocationColumn(props: TableColumnProps): TableColumn {
|
|||||||
|
|
||||||
if (!location) {
|
if (!location) {
|
||||||
return (
|
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
|
...props
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user