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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -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}