2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-28 03:49:20 +00:00

Fix text size in build line table (#11986)

This commit is contained in:
Oliver
2026-05-22 14:37:48 +10:00
committed by GitHub
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}