Fix text size in build line table (#11986)
This commit is contained in:
parent
8ae0a5ea66
commit
5718b49bf1
|
|
@ -536,7 +536,10 @@ export default function BuildLineTable({
|
|||
minWidth: 125,
|
||||
render: (record: any) => {
|
||||
return record?.bom_item_detail?.consumable ? (
|
||||
<Text style={{ fontStyle: 'italic' }}>{t`Consumable item`}</Text>
|
||||
<Text
|
||||
size='sm'
|
||||
style={{ fontStyle: 'italic' }}
|
||||
>{t`Consumable item`}</Text>
|
||||
) : (
|
||||
<ProgressBar
|
||||
progressLabel={true}
|
||||
|
|
|
|||
Loading…
Reference in New Issue