Reduce text size
This commit is contained in:
parent
6adfb858e1
commit
d2d7b8b454
|
|
@ -304,6 +304,7 @@ export default function BuildLineTable({
|
||||||
<Text
|
<Text
|
||||||
c='red'
|
c='red'
|
||||||
style={{ fontStyle: 'italic' }}
|
style={{ fontStyle: 'italic' }}
|
||||||
|
size='sm'
|
||||||
>{t`No stock available`}</Text>
|
>{t`No stock available`}</Text>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -447,7 +448,9 @@ export default function BuildLineTable({
|
||||||
extra={extra}
|
extra={extra}
|
||||||
value={
|
value={
|
||||||
<Group justify='space-between' wrap='nowrap'>
|
<Group justify='space-between' wrap='nowrap'>
|
||||||
<Text>{formatDecimal(record.requiredQuantity)}</Text>
|
<Text size='sm'>
|
||||||
|
{formatDecimal(record.requiredQuantity)}
|
||||||
|
</Text>
|
||||||
{record?.part_detail?.units && (
|
{record?.part_detail?.units && (
|
||||||
<Text size='xs'>[{record.part_detail.units}]</Text>
|
<Text size='xs'>[{record.part_detail.units}]</Text>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue